I got an error using ASP.NET Identity in my app.
Multiple object sets per type are not supported. The object sets \'Identity Users\' and \'Users\'
You do have two DbSets` of the same type.
DbSet
IdentityDbContext itself contains Users property declared as:
IdentityDbContext
Users
public DbSet Users { get; set; }
You're declaring second one in your class.