0

我的 linq 为所有集合返回所有重复的相同行

在数据库中运行 SQL:

select top 20 * from t1
left join t2
on t1.sid= t2.sid
 and t1.pid=t2.pid
where(t2.sid is null and t1.pid='r')

我可以得到 20 行不同的结果。

然后我写Linq:

    Entities dbconn = new Entities();
    List<t1> myResult = (
        from t1Data in dbconn.t1
        join t2Data in dbconn.t2
        on new     { sid = (int)t1.sid,    pid= t1.pid}
        equals new { sid= (int)t2.sid, pid= t2.pid}
        into joinSet
        from joinUnit in joinSet.DefaultIfEmpty()
        where (joinUnit == null) && (t1.pid== "r")
        select t1Data 
        ).Take(20).ToList();

结果的所有行都是某些行。

4

1 回答 1

1

select t1Data is wrong as t1Data is from the original dataset.

Instead, select the joined result: select joinSet.

于 2013-10-22T00:56:52.113 回答