Question

The examples I can find use a two layer architecture, where the controllers directly use the repository classes in the data access layer. See here or here.

Where would you register components from the data access layer if you have a service or business logic layer that uses those components? The data access layer should ideally not be referenced from the user interface layer, right? So Application_Start would not be the right place to do it.

What would be a better way?

Thank you!

Was it helpful?

Solution

Something has to know about which implementations you want to use. There's typically 3 ways to accomplish this:

  1. at compile time which is what Autofac uses
  2. at runtime from predefined config file which Castle Windsor can do
  3. at runtime with a dyanamic configuartion

With Autofac you have a few choices

  1. Wire everything together in Application_Start
  2. Give the responsibility to another component which implements a factory pattern and registers the required components.

For #2 I would implement something like an IContainer interface so that your IoC framework is loosely coupled with your system. Then have your data access implemenations use that interface to registered the required components.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top