当Context从IdentityDbContext继承时,OnModelCreating失败

时间:2015-06-29 17:37:10

标签: ef-code-first asp.net-identity-2

我的数据访问实现如下,并且正在运行

  
      
  1. Contexct继承自DB Context
  2.   
  3. 有OnModelCreating for configurations
  4.   
  5. 手动添加配置
  6.   

但是我将我的上下文从inherit修改为IdentityDbContext<ApplicationUser>并停止手动生成配置,之后OnModelCreating失败并且DB更新根本没有发生。

如果删除OnModelCreating,则可以正常使用。我一运行应用程序。

任何人都可以指导我这里出错吗?

1 个答案:

答案 0 :(得分:5)

我错过了OnModelCreating方法覆盖中的以下行。之后就开始工作了。

base.OnModelCreating(modelBuilder);