Hello There,
I have followed all the steps given into the https://world.episerver.com/documentation/developer-guides/CMS/security/episerver-aspnetidentity/.
So I have created as class
public class CustomUser : ApplicationUser
{
public virtual string FirstName { get; set; }
}
So after build and run the site. I was expecting that, the column "FirstName" would be get generate into table AspNetUsers table in database. But its not working.
Any help.