9

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!

1
  • Sorry I have no answer for your question, but the link to this MVC Commerce application that you provided was very informative and insightful, so thanks. :) Commented Nov 27, 2008 at 17:17

1 Answer 1

7

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.

Sign up to request clarification or add additional context in comments.

4 Comments

OK, so in the first case (everything in Application_Start) is it a problem that the web application now has to have a direct reference to the data access layer assembly?
If having your Application_Start know about your data access layer is an issue you can always abstract your IoC implementation behind an interface and move it somewhere else. Then the decision of what DAL to register can be made oblivious to your web application.
Unless your DAL is sitting behind a web service your web application is going to need access to your DAL assembly via the bin directory or GAC, no?
You could at least "hide" each layers requirements into Autofac Modules. Then the module for a given layer will "know" about the types it needs, but the main app (Application_Start) will only need to know about which modules to load.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.