I\'ve used yoman to generate an ASP.Net Core Web API application via the Visual Studio Code Editor. For reference, I followed this tutorial here
The API works fine. Ho
The correct format to add a new migration is dotnet ef migrations add yourMigrationName
dotnet ef migrations add yourMigrationName
and to update database is dotnet ef database update
dotnet ef database update