在首先使用 EF4 代码时使用大型数据库模型时,有没有人建议?实体集被添加到数据库上下文中,但是如果我有 100 个表,我需要创建 100 个 DbSet,每个表 1 个:
public class Customers : DbContext
{
public DbSet<Customer> Customers {get; set;}
public DbSet<Employees> Employees {get; set;}
public DbSet<...
...
...
95 more
}
对于大型数据库模型,根据域将 DbSet 拆分为多个类是否更好?