PreviousNext

ASP.NET MVC 6 Dependency Injection

by bill-s, 2015-10-23T08:56:27.000Z

ASP.NET MVC 6 comes with a basic dependency injection container that will allow you to implement constructor and property dependency injection into your controller classes. This may be enough for smaller ASP.NET MVC 6 applications while other applications can continue to use Autofac, Ninject, StructureMap, Unity, etc.

Read More