ASP.NET Identity – Multiple object sets per type are not supported

You do have two DbSets` of the same type.

IdentityDbContext<T> itself contains Users property declared as:

public DbSet<T> Users { get; set; }

You’re declaring second one in your class.

Leave a Comment