So I started this new project, and I was trying to incorporate all the new design principles I was reading about, namely trying to make things loosely coupled, testable, and following some patterns.
If there are 3 interfaces like the following public interface IWeapon { void Kill(); } public interface ISword:IWeapon {
Is there a way to get Ninject to log out what it is doing? In particular I\'d like to see when objects are being created.As I have a mix o开发者_StackOverflow中文版f transient and singleton objects i
I am very new to Ninject and am trying Ninject 2 with MVC and Linq. I have a SqlProductRepository class and all I want to know is what\'s the best way of passing the connectionstring in the constructo
Does anyone have an implementation lying around of an auto-mock container using Rhino Mocks 开发者_Go百科and NInject?OK I built one myself using the Moq integration as a starting point. It is very sim
So I\'m starting to use Ninject for dependency injection and I\'m wondering what people think of using a kernel as an object factory for Unit of Work type objects like Linq2Sql Datacontexts.I would ju
I\'m creating a tiny C# application, which currently consists of a core assembly and a winforms assembly. I realize I probably don\'t really need Ninject in a small thing like this, but I would like t
I\'m using Ninject 2 and the Ninject.Web.MVC and using the NinjectHttpApplication Receiving the following error during the logon process:
I\'m new to IOC containers,开发者_如何转开发 and I\'m getting started with NInject. What do you do if you want your constructor to have parameters that are not services and don\'t need to be instanti
After creating a class that inherits from NinjectModule, and overriding t开发者_StackOverflowhe Load() method with all my binding calls, where do I setup ninject in my asp.net web application? (MVC)