I have Visual Studio 2015 and using ASP.NET Core Web API.
I am creating application using database first approach, for that I am using following command in nuget package manager console,
Scaffold-DbContext
-Connection "'Server=.\SQLEXPRESS;Database=MyERP;Trusted_Connection=True;'"
-Provider "Microsoft.EntityFrameworkCore.SqlServer" -OutputDir "DBModels"
-Context "ApplicationDbContext"
After firing this command I am getting following error:
Startup project 'src\Ang2CoreApi' is an ASP.NET Core or .NET Core project for Visual Studio 2015. This version of the Entity Framework Core Package Manager Console Tools doesn't support these types of projects.