0

我试图了解如何在 LINQ 中重写连接查询。

SELECT cs.qid,cs.qk FROM location_table pl
JOIN (SELECT qid,qk FROM q_table WHERE att5 = 'process') cs ON pl.qck = cs.qk
WHERE pl.location = 'there' 

这是我开始使用的 LINQ,但它返回的结果与上述 SQL 不同

from pl in location_table
from cs in q_table
where s. att5 == 'process'
&& cs.qk == pl.qck
&& pl. location == 'there'

谢谢你的帮助。

4

2 回答 2

3

您需要使用join关键字

from pl in location_table
join cs in q_table
    on cs.qk equals pl.qck
where cs.att5 == ‘process’ && pl. location == ‘there’
select new{cs.qid, cs.qk}

如果您想将其重写为EXISTS因为只需要 q_table 的输出:

SELECT qid,qk 
FROM q_table AS cs
WHERE EXISTS
    (
        SELECT 1 
        FROM location_table pl
        WHERE pl.qck = cs.qk AND pl.location = 'there'
    )
    AND cs.att5 == 'process'

你会这样做:

from cs in q_table
where location_table.All(pl=>pl.qck == cs.qk && pl.location == 'there')
    && cs.att5 == 'process'
select new{cs.qid, cs.qk}

他们都应该得到相同的结果。我将把性能检查留给你:)

于 2012-04-05T16:00:48.097 回答
0

您是否尝试过使用显式连接?

from pl in location_table
join cs in q_table on cs.qk equals pl.qck
where s. att5 == 'process'
&& pl. location == 'there'
于 2012-04-05T16:29:45.260 回答