I am trying to get into the new ASP.NET MVC 6 stuff, but I\'m having a very hard time with their new DI system. I have tried to find resources online, but everything I find cove
Also you could continue use Ninject by adding Microsoft.Framework.DependencyInjection.Ninject to your project and then configure it with following code:
public IServiceProvider ConfigureServices(Microsoft.Framework.DependencyInjection.IServiceCollection services)
{
var kernel = CreateMyKernel();
kernel.Populate(services); // Wire up configured services and Ninject kernel with Microsoft tool
return kernel.Get();
}