I was just wondering if I could get some help on understanding what this block of code does, specifically : IdentityDbContext<ApplicationUser> . Thanks !
publicclassApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema:false)
{
}