.netCore数据库迁移
程序包管理器控制台下Nuget
命令: 初始迁移命令: add-migration init -Context DAL.ProductContext 全称:migrations add InitialCreate 非第一次迁移: migrations add 迁移日志名称 例如: add-migration AddRowVersion 更新到数据库: update-database -Context DAL.ProductContext
Powershell方式下命令(同Mac,vscode)
初始迁移命令: dotnet ef migration add initialmigration -s ../ASP.NetCoreAPI 格式:dotnet ef migration add initialmration -s 包含配置文件的项目 非第一次迁移: dotnet ef migrations add 迁移日志名称 -s 包含配置文件的项目 例如: dotnet ef migrations add ThisIsLiYuqis -s ../ASP.NetCoreAPI 更新到数据库: dotnet ef database update
作者:Chaunce
GitHub:https://github.com/liuyl1992
公众号请搜:架构师高级俱乐部 SmartLife_com
声明:原创博客请在转载时保留原文链接或者在文章开头加上本人博客地址,如发现错误,欢迎批评指正。凡是转载于本人的文章,不能设置打赏功能等盈利行为