如何安装
https://docs.microsoft.com/en-us/ef/core/cli/dotnet#installing-the-tools
dotnet tool install --global dotnet-ef
更新模型
dotnet ef migrations add
示例:
dotnet ef migrations add UpdateUser
更新数据库
dotnet ef database update
-->
https://docs.microsoft.com/en-us/ef/core/cli/dotnet#installing-the-tools
dotnet tool install --global dotnet-ef
dotnet ef migrations add
示例:
dotnet ef migrations add UpdateUser
dotnet ef database update