10

我第一次使用实体框架的代码优先样式。我想设置一些默认数据。我遇到的第一种方法涉及创建自定义初始化程序。我走在这条路线上,但在设置迁移后注意到它与 Configuration.cs 一起已经覆盖了种子方法,就像自定义初始化程序一样。

internal sealed class Configuration : DbMigrationsConfiguration<Toolkit.Model.ToolkitContext>
{
    public Configuration()
    {
        AutomaticMigrationsEnabled = false;
    }

    protected override void Seed(Toolkit.Model.ToolkitContext context)
    {
        //  This method will be called after migrating to the latest version.

        //  You can use the DbSet<T>.AddOrUpdate() helper extension method 
        //  to avoid creating duplicate seed data. E.g.
        //
        //    context.People.AddOrUpdate(
        //      p => p.FullName,
        //      new Person { FullName = "Andrew Peters" },
        //      new Person { FullName = "Brice Lambson" },
        //      new Person { FullName = "Rowan Miller" }
        //    );
        //
    }
}

因此,似乎有两种方法可以完成此任务。有人可以阐明推荐的这样做方式吗?或者这有什么关系,我应该掷硬币?

4

1 回答 1

13

Configuration.cs Seed 方法将在您的模型每次更改时运行,以确保某些特定数据保留在您的数据库中,或者甚至可能将该数据重置为指定的默认设置。

另一方面,自定义初始化程序的种子方法可以设置为在每次加载应用程序时运行,就像这段代码一样,目前在我的 MVC 页面的 Global.asax 文件中:

Database.SetInitializer(new MyCustomInitializer<MyDbContext, Configuration>());
var db = new MyDbContext();
db.Database.Initialize(true);

部署应用程序后,实际差异真正发挥作用。Custom Initializer 将确保没有用户可以破坏您的程序中绝对需要的某些数据。

于 2012-12-20T22:00:42.470 回答