OnModelCreating - 强制新创建

时间:2012-11-21 12:23:55

标签: entity-framework ef-code-first entity-framework-5

在某些情况下,在应用程序运行期间,我需要启用标识插入:

modelBuilder.Entity<Activity>().Property(p => p.Id).HasDatabaseGeneratedOption(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.None);

但是,由于OnModelCreating只执行一次,实现这一目标的最佳方法是什么?是否可以重新创建模型?

1 个答案:

答案 0 :(得分:5)

OnModelCreating将始终只调用一次。如果您需要重新创建模型,则必须手动创建DbModelBuilder

var builder = new DbModelBuilder(DbModelBuilderVersion.Latest);
// setup whole model
DbModel model = builder.Build(connection);
DbCompiledModel compiledModel = model.Compile();
// cache compiledModel for future usage - compilation is very expensive

var context = new DbContext(compiledModel);

你应该尽量避免这种情况。标识插入在EF中不能很好地工作,因此您很可能必须直接使用SQL插入数据,而不需要更改映射。