嘿,所以我遇到了这样一种情况,我正在从数据库中拉回一个客户,并通过包含的方式将所有案例研究包括在内
return (from c in db.Clients.Include("CaseStudies")
where c.Id == clientId
select c).First();
但我现在要做的是在包含的案例研究中添加一个 where 子句,以便它只返回已删除 = false 的案例研究
有点像这样
return (from c in db.Clients.Include("CaseStudies")
where c.Id == clientId
&& c.CaseStudy.Deleted == false
select c).First();
但这不起作用:(任何想法