netcore 通过EF 生成数据库表
dotnet tool install --global
dotnet tool install -g dotnet-ef --version 3.1.19 --初始化指定版本
dotnet-ef dotnet add package Microsoft.EntityFrameworkCore.Design --依赖包
dotnet ef migrations add InitialCreate --生成配置文件 如果报错可手动删除对应文件也可通过命令删除后再执行命令
dotnet ef migrations script -o d:\script\dm.sql --最终保存为sql文件 文件路径自定义