0

我需要转换这个查询:

SELECT *
FROM Table1 AS t1
left join Table2 t2 
    on t1.Column1 = t2.Column1
left join Table2 t2
    on t1.Column2 = t2.Column2 and t2.Column3 = 1

到 LinqToSQL 和 Lambda。

我一直在寻找对 LINQ 中 SQL 连接的良好解释,但没有找到任何清楚说明如何利用 LINQ 来实现 SQL 中提供的不同连接的东西。

有人可以解释如何在 SQL 中利用不同的 SQL 连接。

4

1 回答 1

1

尝试这样的事情:

AlternativeLearningPlanYears
.GroupJoin
(
    Leas,
    x => x.DistrictLeaId,
    y => y.LeaId,
    (x,y) => new {x,y}
)
.GroupJoin
(
    Leas,
    x => new {x.PrivateInstitutionId,1},
    y => new {y.PrivateInstitutionId,IsPrivateInstitution},
    (x,y) => new {x,y}
)
.Where
(
    z => z.x.SchoolYear == 23
    && z.x.Granted == 1
    && z.x.PrivateInstitutionId == null
    && z.x.DistrictName == null
)

我没有你的架构,所以可能会有一些错误,所以发布它们,我们会解决它们..

于 2013-07-24T13:24:00.530 回答