Migration 使用
### 多个DbContext 迁移 Add-Migration -context CostCenterContext ### 多个DbContext 更新 update-database -context CostCenterContext ### 生成DbContext脚本 Script-Migration -context CostCenterContext script-migration -f 20181210031218_v1.8-upgrade -t 20181218095741_v1.9-upgrade -c costcentercontext
迁移命令描述 | CLI命令 | PMC命令 |
---|---|---|
创建迁移:migrationname为迁移名称 | dotnet ef migrations add migrationName | add-migration migrationName |
移除迁移(删除最近的一次迁移) | dotnet ef migrations remove | remove-migration |
应用所有的迁移(使迁移文件应用到数据库) | dotnet ef database update | update-database |
指定版本进行迁移 | dotnet ef database update migrationName | update-database migrationName |
生成对应版本的脚本 | dotnet ef migrations script | Script-Migration |
查看迁移列表 | dotnet ef migrations list | |
查看数据库上下文信息 | dotnet ef dbcontext info |