.net core之使用EF进行数据迁移的二种方式。

第一种 通过命名行的形式(cmd)
不推荐(这种方式相对比较麻烦)
因为微软在.net core 3.1版本后 就没有dotnet命令了 要你自己安装

我们打开.net core之使用EF进行数据迁移的二种方式。
打开控制台后 输入一下代命令 进行安装
dotnet tool install --global dotnet-ef .net core之使用EF进行数据迁移的二种方式。
按好后在文件夹里进行cmd
输入
dotnet ef migrations add DataSeeding
进行数据迁移
DataSeeding是你取的类名称
如图
.net core之使用EF进行数据迁移的二种方式。
然后我们对数据库进行更新
执行一下命令
dotnet ef database update
看到最后的Done代表执行完成
此时数据已经进入数据库呢。

方式二
.net core之使用EF进行数据迁移的二种方式。
进入控制台
输入
add-migration initiaMigration 进行数据迁移
同样initiaMigration是类名

然后输入
update-database进行数据更新

.net core之使用EF进行数据迁移的二种方式。
好了 以上就是2种数据迁移的命令方式,我使用用的是数据模型优先,ModelFrist。

上一篇:登录注册 EF+API


下一篇:EF Code First