i added some properties like First name,last name,telephone to the Identitymodel.cs and it goes together with the default username and password when you want to signup. now my problem is this, The first name, last name and telephone i added into it. i want to use it for the profile page but i don't know how to retrieve it and edit it since it is in the Identitymodel.cs
Can it be edited and if yes, how do i go about it. please i am stuck.
public class ApplicationUser : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string HomeAddress { get; set; }
public string Phone { get; set; }
public string Country { get; set; }
public string Zip { get; set; }
public string SelfDescription { get; set; }
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection")
{
}
}
}