Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So simple question

How can I access Container instance out of controller?

I have to use Container.Resolve in my class but how can I access Container instance?

Is it singleton? Can I use new Container() or is there any chain like Funq.StaticContainer?

https://gist.github.com/2844693 (Thanks to myth for gist hint, a) or b) or c))

I will use mythz's solution, it is accepted by me but there are concerns for it's pattern (ServiceLocator Pattern), you can check for extra info: http://blog.ploeh.dk/2010/02/03/ServiceLocatorIsAnAntiPattern.aspx

share|improve this question
stackoverflow.com/questions/3139209/… Approach is ok for me. – ozz May 31 '12 at 17:27

1 Answer

up vote 3 down vote accepted

There are a couple of ways to statically reference your AppHost instance. You can resolve a dependency via the IAppHost instance with:

EndpointHost.AppHost.TryResolve<T>();

If for some reason you need to access the concrete Funq.Container, you can access it via the singleton:

AppHostBase.Instance.Container
share|improve this answer
There is no Resolve<T> method on IAppHost I used TryResolve<T> (comes from IResolver) – ozz May 31 '12 at 21:23
Thanks updated answer. TryResolve returns null for missing dependencies where Resolve would throw a ResolutionException – mythz Jun 1 '12 at 4:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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