I\'m testing out the new Asp.Net 5, using VS 2015 CTP-6. Because of the lack of features in Entity Framework 7, I would prefer using EF6 for now.
I\'ve tried removi
Can you not just do this in the startup.cs file? Save creating a factory
// new context on each request services.AddScoped((s) => { return new MyContext(Configuration["Data:MyConnection:ConnectionString"]); });