我遇到了这个问题:
从 Entity Framework 4.1 Code First 中的 NotMapped 类派生实体类
但是由于我是先做代码,所以创建一个不作为数据库中的表生成的 POCO 类的最佳方法是什么,而只是一个将其他模型结合在一起的辅助类?
编辑:助手/帮助类的示例
[NotMapped]
public class Dashboard
{
private VehicleDbContext db = new VehicleDbContext(); //Where DbSet of models are declared
public List<User> UserList{get; set;}
public List<Car> CarList{get;set;}
public Dashboard()
{
Initialize()
}
private void Initialize()
{
CarList = db.Cars.ToList();
UserList = db.Users.ToList()
//more init algo
}
}