How can I create a CRUD for the AspNetUsers table, creating a MVC 5 controller with views using Entity Framework
This is the structure of the table: AspNetUsers
This is the Model: IdentityModels
namespace Portal.Models
{
public class ApplicationUser : IdentityUser
{
public string Nombre { get; set; }
public string Apellido { get; set; }
public string Departamento { get; set; }
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection")
{
}
}
}