Создайте свой собственный класс пользователя, унаследовав от IdentityUser
.Там вы можете добавить свои собственные свойства и переопределить существующие (чтобы сопоставить их с именами столбцов).
public class ApplicationUser : IdentityUser
{
public ApplicationUser()
{
IsActive = true;
}
// these two properties are your custom ones
public int? StaffId { get; set; }
public bool IsActive { get; set; }
// here you map an Identity property to a column you already have
[Column("LockoutEndDateUtc")]
public override DateTimeOffset? LockoutEnd { get; set; }
}