I downloaded the Ninject.Web.Mvc module and noticed that it did not contain the NinjectHttpApplication class which I discovered was in the Ninject.Web.Common and I have been using Ninject.Web.Common without the Ninject.Web.Mvc module and its been working well so far.
So my question is.. do I need the Ninject.Web.Mvc library in order to use Ninject properly in an ASP.NET MVC 3 application? I wouldnt want to add an assembly/library that I would not use in my application
I downloaded the Ninject.Web.Mvc module and noticed that it did not contain the NinjectHttpApplication
Share
The
Ninject.Web.Mvcmodule gives you the ability to add dependency injection on your controllers. If you don’t need to have dependencies on the controller contructors, you can get by without this library.Read more here.