Which Interfaces/Services does ASP MVC3 attempt to resolve automatically using DependencyResolver?
I suppose I could look through the whole MVC3 source and try and find them all, but is there a list somewhere detailing all the Interfaces that MVC3 attempts to resolve开发者_开发问答 automatically using the DependencyResolver?
So far I only have IControllerFactory
which I'm using to find Controllers using MEF. What other useful services are discovered?
Brad Wilson who implemented the DI feature has an entire blog series about all the services that are retrieved through DependencyResolver in ASP.NET MVC 3.
精彩评论