I am trying to implement Entity Framework 7 in MVC 6, and on this page here it says to do
services.AddEntityFramework() .AddSqlServer() .AddDbContext
Since this has been posted, assemblies have been renamed. As part of EntityFrameworkCore you now need to add a using statement the following
using Microsoft.EntityFrameworkCore;
And the .UseSqlServer extension method to configure your context will become available