I\'m using Microsoft.AspNet.Identity 2.0.0-beta1 and Entity Framework 6.1.0-beta1 (released 11 Feb 2014).
I\'m getting the following error when I try to change the defa
I think the mapping might be incorrect. While defining the ApplicationDbContext class, you are using the custom classes defined for roles, logins and claims for generic but passing the base classes for mapping the tables. For the ChangePK example the following mapping worked for me. Let me know if this works for you too. The mapping should be simple enough
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity().ToTable("MyUsers");
modelBuilder.Entity().ToTable("MyUserRoles");
modelBuilder.Entity().ToTable("MyUserLogins");
modelBuilder.Entity().ToTable("MyUserClaims");
modelBuilder.Entity().ToTable("MyRoles");
}