的EntityFramework。选择孙子出现在Ids的int数组中的父对象

时间:2017-05-29 16:54:48

标签: .net entity-framework

鉴于以下实体

Brokers / AccountTypes / ExecutionOptions

经纪人有很多账户类型

AccountTypes有许多ExecutionOptions

给定一个ExecutionOptions Ids的int数组

如何选择所有包含AccountTypes的Broker,其中包含Ids出现在我的传入int数组中的ExecutionOptions?

1 个答案:

答案 0 :(得分:0)

您可以从ExecutionOptions开始,按ID过滤,然后在所有表中向上联接,直到您到达Brokers。只有表格之间存在关系的经纪人才会被找到,否则连接将过滤掉它们。