My setup...Currently, I have two models that inherit from ...ApplicationUser..., which inherits ...IdentityUser.... The user classes are:...public abstract class ApplicationUser : IdentityUser
{
[PersonalData]
public string FirstName { get; set; }...