20 lines
358 B
Plaintext
20 lines
358 B
Plaintext
|
|
|
|
|
|
# 程序包管理控制台使用方式
|
|
|
|
1、生成迁移文件
|
|
add-migration init -Context IRaCISDBContext
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 使用dotnet 命令迁移
|
|
|
|
# dotnet ef migrations add 本地迁移名字 -p 项目名 -c 数据库上下文名 -o 迁移文件生成目录
|
|
|
|
1、生成迁移文件
|
|
dotnet ef migrations add Initial -s IRaCIS.Core.API -p IRaCIS.Core.Infra.EFCore -c IRaCISDBContext -o CodeFirst_MSSQL/Migrations
|