1. 程式人生 > >.netCore數據庫遷移

.netCore數據庫遷移

rod 控制臺 back csharp init 例如 base asp.net tab

程序包管理器控制臺下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

  

.netCore數據庫遷移