You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
But for 2 others we still can't do it without modifications of our context:
/// <summary>/// Base class for the Entity Framework database context used for identity./// </summary>publicclassIdentityDbContext:IdentityDbContext<IdentityUser,IdentityRole,string>{}/// <summary>/// Base class for the Entity Framework database context used for identity./// </summary>/// <typeparam name="TUser">The type of the user objects.</typeparam>publicclassIdentityDbContext<TUser>:IdentityDbContext<TUser,IdentityRole,string>whereTUser:IdentityUser{}
As a result you are forcing us to inherit our dbcontext from IdentityDbContext : IdentityDbContext<IdentityUser, IdentityRole, string> and making the other 2 others versions IdentityDbContext<TUser>, IdentityDbContext completely useless.