Asp.Net Identity - IdentityDbContext<TUser> causing problems for fields added to AspNetRoles table
问题 IdentityDbContext causing problems for properties/fields added to AspNetRoles I believe the problem is here with IdentityDbContext taking an IdentityUser type: public class MyIdentityDb : IdentityDbContext<ApplicationUser> { public IdentityDb() : base("IdentityDb") { } } But let me explain… It is wonderful that we can add fields to the AspNetUsers table by adding properties to our ApplicationUser class that inherits from IdentityUser. Example: public class ApplicationUser : IdentityUser {