I\'m starting a web application with MVC3 and Ninject. There is one dependency that I also need in the Global.asax file that needs to be a singleton.
I thought it sh
The MVC extension injects the HttpApplication by default. But only property injection can be used! So just add a property decorated with the Inject attribute.