今天使用dotnet命令行迁移数据,输入:
dotnet ef migrations add InitialCreate;
结果直接报错,如下:
这是因为:从 3.0 起,EF Core 命令列工具 (dotnet ef) 不在 .NET Core SDK 里面,需另装。命令如下:
dotnet tool install --global dotnet-ef
Over!
今天使用dotnet命令行迁移数据,输入:
dotnet ef migrations add InitialCreate;
结果直接报错,如下:
这是因为:从 3.0 起,EF Core 命令列工具 (dotnet ef) 不在 .NET Core SDK 里面,需另装。命令如下:
dotnet tool install --global dotnet-ef
Over!