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

I'm using ninject (extensions) to inject dependencies in a wcf service. What scope must I use for injecting IDataContext dependency since I get "The context cannot be used while the model is being created." error when using InRequestScope() ?

Bind<IDataContext>().To<DataContext>().InRequestScope()
                .WithConstructorArgument("connectionString", "TestDB");
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.