我正在看一个教程,发现了类似的东西。 无法找出为什么将模型类的属性(即,Customers,Movies ..)添加到在ASP.net MVC单独身份验证模板中自动生成的此上下文类中。
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public DbSet<Customer> Customers { get; set; }
public DbSet<Movie> Movies { get; set; }
public DbSet<MembershipType> MembershipTypes { get; set; }
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}