Microsoft.EntityFrameworkCore;//必选.
Microsoft.EntityFrameworkCore.数据库类型;//按数据库选.
Microsoft.EntityFrameworkCore.数据库类型.Design;//一般二选一
Microsoft.EntityFrameworkCore.数据库类型.Tool;//一般二选一

语句

dotnet ef dbContext scaffold
"server=127.0.0.1;database=database;username=xxx;pwd=xxx;" |
Microsoft.EntityFramworkCore.数据库类型
-o Entities

https://blog.csdn.net/EAyayaya/article/details/124048491

dotnet tool install --global dotnet-ef
dotnet-ef --version

指令

  • 创建版本
    dotnet ef migrations add init
  • 更新数据库
    dotnet ef database update

标签: none

添加新评论