I'm have my user model
public class IdentityUser : IdentityUser
{
}
But then, now I need to have another model implementing identityuser
How then is my DbContext/UserManager to accept other identityuser model ?
public class ApplicationDbContext : IdentityDbContext<IdentityUser>
Go to the complete details ...