I'm a little confused with IServiceLocator, IMvcServiceLocator, IDependencyResolver, etc...

What is the ASP.NET MVC 3 RTM way of locating services?

All I need is to access something like

T Resolve<T>();
T Resolve<T>(string key);

from anywhere (including another assembly).

EDIT: example

My web app has a kind of modular architecture. Themes are one aspect of modules. Each theme is an individual class library. It's not possible to know what services a theme needs. E.g. some view might display a tag cloud widget and that widget needs an instance of TagRepository.

Currently I'm using Windsor for IoC and I could expose that container for modules. But I don't really want to make every module depend on Windsor. I would like to know if there's a solution in standard Mvc library since modules need a reference to that anyway.

link|improve this question

55% accept rate
What exactly are you trying to do? – NickLarsen Jan 27 '11 at 14:56
Example added... – Mika Kolari Jan 27 '11 at 15:58
2  
I've asked 10 questions. 4 of them : 0 answers, another 4: 1 answer, last 2: 2 answers. How can I accept nonexistent answers? – Mika Kolari Jan 27 '11 at 17:36
feedback

1 Answer

up vote 0 down vote accepted

Asp.net Mvc doesn't have it's own DI container. You would have to implement IDependencyResolver. Take a look at this question: Castle Windsor Dependency Resolver for MVC 3 RC

link|improve this answer
IDependencyResolver doesn't have a method to get service by name/key. Some beta version had IMvcServiceLocator and MvcServiceLocator bradwilson.typepad.com/blog/2010/07/… but those don't exist in RTM. So there isn't an exact substitutions for them? – Mika Kolari Jan 27 '11 at 19:50
I don't remember if those interfaces were the same...If you've read part 5, he stated: For developers porting code from MVC 3 Preview 1 to MVC 3 Beta, this interface replaces IMvcServiceLocator. – frennky Jan 27 '11 at 20:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.