我在一个单独的数据访问层类库项目中有一个 MyDbContext。我有一个带有默认 IdentityDbContext 的 ASP.NET MVC 5 项目。这两个上下文使用相同的数据库,我想使用 AspNetUsers 表作为我的一些表的外键。所以我想合并这两个上下文,我也想使用 ASP.NET Identity。
我怎样才能做到这一点?
请指教,
这是我合并后的上下文:
public class CrmContext : IdentityDbContext<CrmContext.ApplicationUser> //DbContext
{
public class ApplicationUser : IdentityUser
{
public Int16 Area { get; set; }
public bool Holiday { get; set; }
public bool CanBePublic { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
public CrmContext()
: base("DefaultConnection")
{
}
public DbSet<Case> Case { get; set; }
public DbSet<CaseLog> CaseLog { get; set; }
public DbSet<Comment> Comment { get; set; }
public DbSet<Parameter> Parameter { get; set; }
public DbSet<Sign> Sign { get; set; }
public DbSet<Template> Template { get; set; }
public DbSet<Read> Read { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
这是我的 RepositoryBase 类:
public class RepositoryBase<TContext, TEntity> : IRepositoryBaseAsync<TEntity>, IDisposable
where TContext : IdentityDbContext<CrmContext.ApplicationUser> //DbContext
where TEntity : class
{
private readonly TContext _context;
private readonly IObjectSet<TEntity> _objectSet;
protected TContext Context
{
get { return _context; }
}
public RepositoryBase(TContext context)
{
if (context != null)
{
_context = context;
//Here it is the error:
_objectSet = (_context as IObjectContextAdapter).ObjectContext.CreateObjectSet<TEntity>();
}
else
{
throw new NullReferenceException("Context cannot be null");
}
}
}
'System.Data.Entity.ModelConfiguration.ModelValidationException'
EntityFramework.dll中出现类型异常,但未在用户代码中处理
附加信息:在模型生成过程中检测到一个或多个验证错误:
更新:我找到了解决方案。
我不得不删除这个命名约定:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
并将 ef cf 模型迁移到 db,以使用 asp.net 身份的命名约定重命名我的表。它现在正在工作!