Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how do i modify the following from Autofac to use the Common Service Locator (where _context is of type IComponentContext):

var query = _context.Resolve<IContentQuery>(TypedParameter.From<IContentManager>(this));

The code above is taken from Orchard and and i'm trying to remove the dependency on Autofac. Usually i'd try something like:

var query = ServiceLocator.Current.GetInstance<IContentQuery>();

However this returns null and i can't see how to handle the TypedParameter stuff as i don't understand what it's doing.

I'd really appreciate it if someone could help. Thanks

share|improve this question

1 Answer

up vote 3 down vote accepted

A TypedParameter provides an additional value to the constructor of the component being resolved. In this case the underlying ContextQuery will accept a parameter of type IContentManager with the value this being passed.

Common Service Locator doesn't support parameterisation, so you will probably need to use the specific features of your underlying IoC container.

Hope this helps. Nick

share|improve this answer
Hi, thanks for letting me know. – nfplee Jun 16 '11 at 12:19

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.