我有三张桌子。我必须使用 Linq 语句检索数据。我的三个表名是 A、B、C。我根据 id 连接了连接两个表 A 和 B 的连接,如下所示:
select ol, fN, LN, ci, co
from member
join details
on member_id = details_id
where details_id in
(select contacts_id from contacts where
contacts_id1 = 1 and contacts_usr_id = 1)
我能够根据where
条件编写查询,如何为内部 while 条件编写查询?