You do have two DbSet
s` 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.
You do have two DbSet
s` 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.