I\'m using Ninject for constructor injection to create my concrete objects on the fly.However, I have a scenario where the class contains a method that accepts a string.Based on the value of the strin
I am evaluating Ninject for a project, and the only issue I have had with it is that it fails silently on property injection.If I call
I have this code : abstract class GenericAbstractClass<T> where T : struct { } class ImplementationClass : GenericAbstractClass<int> { }
I have a MVC 3 solution configured with Ninject using a repository pattern. Some of my bindings include:
In my ASP.NET WebForms (3.5) application, adding the NinjectHttpModule to the <httpModules> section in the web config causes repeaters and listviews to lose their databound items on postback.
i got the tiny interface ITest: public interface ITest { void DoSomething(); } and some implementations of ITest
I ran into a problem configuring a custom asp.net membership service. I\'ve got an annoying message on application startup when binding modules, here it is :
I have read often that Service Locators in IOC are an anti-pattern. Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it\'s very big and it\'s fragmen
Question: Is there a way to use Ninject to inject dependencies into my MVC Models? First of all, I am new to MVC and DI (and stackoverflow, btw), so I wanted to make sure I\'m going down the proper p
Is it at all possible to configure Ninjec开发者_StackOverflow中文版t to load modules that have been declared as internal?