我正在使用具有自我跟踪实体的EF5 Code First。如何确保只加载了我的Category实体的相关Product节点,即IsDeleted == false
?我使用EF Power Tools创建了Model,并希望将这个额外的查询条件存储在模型映射类中的某个位置(MyContext : DbContext
或ProductMap : EntityTypeConfiguration<Product>
)。每次访问Products
类的Category
属性时,只应加载未删除的产品。谢谢你的帮助!
答案 0 :(得分:1)
在您的上下文中,您可以添加一个返回查询的方法:
public class MyContext: DbContext
{
public DbSet<Entity> Entities {get;set;}
public IQueryable<Entity> NonDeletedEntities()
{
return this.Entities.Where(e => e.IsDeleted == false);
}
}
现在您可以使用该查询并将其与其他条件一起聚合,并且它们都将被查询
new MyContext().NonDeletedEntities().Where(e => e.Name == "Philippe");
//is the same as
new MyContext().Entities.Where(e => e.IsDeleted == false && e.Name == "Philippe");
<强>更新强>
如评论中所述,如果您想要从类别实体访问未删除的产品
public class Category
{
public virtual ICollection<Product> Products { get; set; }
public IQueryable<Products> NonDeletedProductts()
{
return this.Products.Where(e => e.IsDeleted == false);
}
}
我没有对此进行过测试,但它应该有效。