IdentityModels.cs
public class ApplicationUser : IdentityUser
{
public string First_Name { get; set; }
public string Last_Name { get; set; }
public Address { get; set; }
}
{
public string First_Name { get; set; }
public string Last_Name { get; set; }
public Address { get; set; }
}
then perform
add-migration UserRegister
add-migration UserRegister
update-database
it will add Fields to AspNetUsers Table
No comments:
Post a Comment