You extend the ApplicationUser object to add additional properties.
public class ApplicationUser : IdentityUser { public string SecondaryEmail { get; set; } }
You will need to update the models and actions to view the registry to get detailed details.
If you want the user to be able to log in with this additional email, you need a special implementation of SignInManager<ApplicationUser> .
source share