gpt4 book ai didi

c# - Entity Framework 代码优先 : Configuration. cs 种子或自定义初始值设定项

转载 作者:可可西里 更新时间:2023-11-01 09:05:21 26 4
gpt4 key购买 nike

我是第一次使用 Entity Framework 的 Code First 风格。我想设置一些默认数据。我遇到的第一种方法涉及创建一个 custom initializer .我走的是这条路线,但在设置迁移后注意到它随 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" }
// );
//
}
}

所以看起来有两种方法可以完成这个任务。有人可以阐明推荐的做法是什么吗?还是这根本不重要,我应该抛硬币?

最佳答案

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

另一方面,Custom Initializer 的 seed 方法可以设置为在每次应用程序加载时运行,例如这段代码,它当前位于我的 MVC 页面的 Global.asax 文件中:

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

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

关于c# - Entity Framework 代码优先 : Configuration. cs 种子或自定义初始值设定项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13980335/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com