到目前为止,我认为我可以做到:
var num = db.MyTable.Include(x => x.RelatedTable)
.Count( x.idTenant == CurrentTenantID && x.Active &&
x.RelatedTable.SomeProperty.Value == true);
这总是返回零记录。我是否错误地假设包括 RelatedTable 我可以在 where 部分使用它?
顺便说一句......“SomeProperty”是可空的,这就是“.Value”的原因。
我正在使用实体框架 4.1。(数据库优先)