Visual Studio Code Entity Framework Core Add-Migration not recognized

前端 未结 5 1029
青春惊慌失措
青春惊慌失措 2021-02-02 09:53

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

5条回答
  •  别那么骄傲
    2021-02-02 10:01

    The correct format to add a new migration is dotnet ef migrations add yourMigrationName

    and to update database is dotnet ef database update

提交回复
热议问题