c# – 导航实体框架迁移选项

我试图找出在我的生产环境中迁移数据库的最佳方法,我认为我的一些术语很混乱.

我有一个名为“Migration”的类,我用它来为我的数据库设定种子.它的构造函数看起来像这样(我的DbContext被称为SiteDatabase):

internal sealed class Migration : DbMigrationsConfiguration<SiteDatabase>
{
    public Migration()
    {
        AutomaticMigrationsEnabled = true;
        AutomaticMigrationDataLossAllowed = true;
    }
}

> AutomaticMigrationsEnabled在这里做什么?这是我启用自动迁移的方式吗?

在我的’Application_Start()’方法中,我看到添加了以下项目:

protected void Application_Start()
{
    new DbMigrator(new Migration()).Update();

    // Option 1
    Database.SetInitializer(new MigrateDatabaseToLatestVersion<SiteDatabase, Migration>());

    // Option 2
    Database.SetInitializer(new DropCreateDatabaseAlways<SiteDatabase>());
}

>这些是唯一可用的选项吗?
>这与Migration类中的AutomaticMigrationsEnabled有什么关系?

在程序包管理器控制台中,我了解以下命令:

> update-database
> add-migration

> update-database如何与AutomaticMigrationsEnabled相关?它还需要吗?什么时候创建一个新的DbMigrator?
>如果我使用add-migration创建迁移,那么命名它们的好方法是什么?我知道它们会自动以时间戳命名,但它还需要附加一个字符串才能附加到它.
>有没有办法控制如何命名使用add-migration生成的文件?

最佳答案

What does the AutomaticMigrationsEnabled do here? Is this how I enabled Automatic Migrations?

显然:是的.这样做的结果是您不必在调用update-database之前执行add-migration:它将为您生成只有名称时间戳的迁移.您将无法在“迁移”文件夹中找到此迁移.

Are these the only options available?

不,there are more像CreateDatabaseIfNotExists,DropCreateDatabaseWhenModelChanges,DropCreateDatabaseAlways和您自己创建的自定义.

How does this relate to the AutomaticMigrationsEnabled that in the Migration class?

自动迁移只是通过确保您不必再自己执行它来简化表的迁移过程.数据库初始化程序决定如何处理数据库本身.它们是不同的方面,但它们以它们在数据库上工作的方式连接.

How does update-database relate to AutomaticMigrationsEnabled? Is it still required? What about when you create a new DbMigrator?

见上文:您基本上不必再调用add-migration.

If I create migrations using add-migration, what is a good method for naming them?

我不知道任何指导方针,但我只是总结了改变的内容.例如,“添加用户模型地址”以向我的用户添加地址字段.这取决于你决定什么是最好的.

Is there a way of controlling how the files generated with add-migration are named?

我不知道这样的选择.

点赞