c# – 实体框架:构建初始数据库时只有种子

前端之家收集整理的这篇文章主要介绍了c# – 实体框架:构建初始数据库时只有种子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Entity Framework 6和这个DbMigrationsConfiguration:
public sealed class Configuration : DbMigrationsConfiguration<DataContext>
{
    public Configuration()
    {
        AutomaticMigrationsEnabled = true;
    }

    protected override void Seed(Danfoss.EnergyEfficiency.Data.DataContext context)
    {
        //Adding initial data to context

        context.SaveChanges();
    }

}

我以这种方式在WebAPI中使用它:

public static void Register(HttpConfiguration config)
{
    Database.SetInitializer(new MigrateDatabaseToLatestVersion<DataContext,Configuration>());
}

我注意到每次我的应用程序启动时,Seed函数都在运行.我怎么能阻止这个?我只喜欢它在第一次运行时运行,当它构建初始表时.

解决方法

每次调用Update-Database时都会调用DbMigrationsConfiguration.Seed方法.其背后的原因在本博客中由 One Unicorn解释.

这意味着您必须编写种子代码以应对现有数据.如果您不喜欢,可以在CodePlex投票支持更改.

与此同时,引用博客

The best way to handle this is usually to not use AddOrUpdate for
every entity,but to instead be more intentional about checking the
database for existing data using any mechanisms that are appropriate.
For example,Seed might check whether or not one representative entity
exists and then branch on that result to either update everything or
insert everything

我过去使用的另一个选项是使用sql命令添加与迁移本身中的迁移相关的常设数据.这样它只运行一次.我倾向于放弃这一点,因为我更愿意将播种放在一个地方.

原文链接:https://www.f2er.com/csharp/99150.html

猜你在找的C#相关文章