实体框架代码优先数据库中的默认数据
如何处理在应用程序启动之前或数据库生成之后需要预先存在的数据的情况。例如,我有一个国家/地区列表,我希望在代码优先生成后将其加载到数据库中。我该怎么做?
应用程序的结构如下:
Repository>服务> WebMVC
xml 位于 WebMVC
项目中。
How do I handle situations in which I need pre-existing data before the app is started or right after the database is generated. For example, I have a list of countries in which I'd like to load into the database after code-first generates it. How do I do this?
App is structured as follows:
Repository > Service > WebMVC
The xml is in the WebMVC
project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您创建自定义初始值设定项,它继承自
DropCreateDatabaseIfModelChanges
或DropCreateDatabaseAlways
接口。像:然后你覆盖种子方法,像:
整个例子可能看起来像:
编辑: 设置完之后,你也必须设置初始化程序,正如 Ladislav Mrnka 提到的。
即:在 Global.asax 中:
不要忘记添加
using System.Data.Entity;
……
You create custom initializer, which inherits from
DropCreateDatabaseIfModelChanges
orDropCreateDatabaseAlways
interface. Like:And then you overwrite Seed method like:
Whole example might look like:
Edit: After setting this up, you have to set up Initializer too, as Ladislav Mrnka mentioned.
ie.: in Global.asax:
Don't forget to add
using System.Data.Entity;
.....
您必须创建从
DropCreateDatabaseIfModelChanges
派生的自定义数据库初始值设定项,并在重写的Seed
方法中填充数据。然后,您必须在应用程序启动时使用Database.SetInitializer 来设置新的初始值设定项。 这里是用于在数据库中创建自定义索引的示例(来自 CTP5)。You must create custom database initializer derived for example from
DropCreateDatabaseIfModelChanges
and fill data in overridenSeed
method. Then you must useDatabase.SetInitializer
to set your new initializer when application starts. Here is example (from CTP5) used to create custom index in the database.有关示例,请参阅新的 MVC / Entity Framework 教程系列:
http://www.asp.net/entity-framework/tutorials#Using%20MVC
#1 和 #4 都显示初始值设定项类。
For an example see the new MVC / Entity Framework tutorial series at
http://www.asp.net/entity-framework/tutorials#Using%20MVC
Both #1 and #4 show initializer classes.