是否有手动在asp net项目中创建迁移的方法?生成空迁移文件并添加将改变数据库结构的代码?
在asp网核心中:
更改模型
class Product
{
public string PartNumber { get; set; }
}
dotnet ef迁移添加MyMigration - >它将检查模型并自动生成迁移。
在Ruby on Rails中
撰写迁移
class AddPartNumberToProducts < ActiveRecord::Migration[5.0]
def up
add_column :products, :part_number, :string
end
end
我更喜欢Rails方式......