我有一个我创建并启用迁移的项目。它是用 4.3 创建的,所以我认为它是最新的。我在执行更新的上下文的构造函数中有一些代码(请参见下面的代码),并且每次我添加诸如可为空的字符串列之类的内容或执行不以不一致的方式更改数据库的操作时似乎都可以工作。我的场景是我改变了我的模型,当我观察 sql 跟踪时,它会自动为我改变列。
我的问题是我想做“向上”和“向下”方法,但对它们何时运行感到困惑。也就是说我现在在版本1,我在我的“up”方法中放了一些代码来添加一列,然后当我想转到版本3时,它怎么知道要调用哪个“up”方法?
使困惑。-彼得
namespace MigrationsAutomaticDemo.Migrations
{
using System.Data.Entity.Migrations;
public partial class AddBlogRating : DbMigration
{
public override void Up()
{
AddColumn("Blogs", "Rating", c => c.Int(nullable: false, defaultValue: 3));
}
public override void Down()
{
DropColumn("Blogs", "Rating");
}
}
}
,
public SiteDB()
{
UpdateDatabase();
}
// http://joshmouch.wordpress.com/2012/04/22/entity-framework-code-first-migrations-executing-migrations-using-code-not-powershell-commands/
public static int IsMigrating = 0;
private static void UpdateDatabase()
{
if (0 == Interlocked.Exchange(ref IsMigrating, 1))
{
// Manually creating configuration:
var migratorConfig = new DbMigrationsConfiguration<SiteDB>();
migratorConfig.AutomaticMigrationsEnabled = true;
// Using configuration defined in project:
//var migratorConfig = new DbMigrationsConfiguration();
// 3
//var dbMigrator = new DbMigrator(new Settings());
var dbMigrator = new DbMigrator(migratorConfig);
dbMigrator.Update();
Interlocked.Exchange(ref IsMigrating, 0);
}
}