I am implementing Ninject dependency injection in an existing MVC 2 application that uses a base controller that all controllers inherit to set navigation and other information needed by the master pa
Hey, I have been searching all over for a solution to injecting into action filters.I have found a few solutions but they were implemented with an older version of ninject/mvc.Has anyone found a simpl
I\'m using ASP.NET MVC 2 to implement a web service and I have a custom JsonResult class: public abstract class JsonResult : ActionResult
Pardon me if there\'s a similar question somewhere on here already, but I couldn\'t find one. Anyway, I have an ASP.NET MVC 2 application using Ninject 2 for the DI. I\'m setting up the constructors
Could someone point me in the direction of how to create a custom \"Inject\" attribute with Ninject? I would like to do the following:
I have for instance 2 interfases IInterface1 and IInterface2, public interface IInterface1 {...} public interface IInterface2 {...}
I\'m introducing Ninject into a large mess of a existing project. I want to write a diagnostic test to make sure that all of the classes Ninject will end up creating can actually BE resolved by Ninjec
I have an WinForms application with this Main Form : ICountRepository countRepository; public MainForm(ICountRepository countRepository)
I have a class which needs to use an IRepository for one method in it\'s class. Ideally, I would like to avoid having to resolve this dependency into the class\'s constructor, and so I found method l
I have a MVC web app that is based on the following architecture Asp.Net MVC2, Ninject, Fluent NHibernate, MySQL which uses a unit of work pattern.