1

我在 EF 中使用 linq 进行查询时遇到问题。

基本上,我想做的是这样,用简单的 SQL:

SELECT
    t2.*
FROM
    [SHP_Console2].[dbo].[Domain] t1
INNER JOIN
    [SHP_Console2].[dbo].[Domain] t2
    ON t2.[left] >=t1.[left] AND t2.[right]<=t1.[right]
WHERE
    t1.ID =1

我无法用 linq 做到这一点。

我正在尝试这个:

 from a in DomainRep.Where(c => c.ID == domainID).Select(c => new { c.left, c.right })
 from b in DomainRep.Where(x => x.left >= a.left && x.right <= a.right)
 select a;

我做错了什么?

4

2 回答 2

2

您将查询与匿名类型混合在一起。你不能这样做。

您也不能使用JOINwith>=条件 - LINQ 不支持这种语句。但是,可以使用替代语法来完成。

from a in DomainRep
from b in DomainRep
where b.left >= 1.left && b.right <= a.right && a.ID = 1
select b;
于 2013-04-04T10:07:21.873 回答
-1

编辑: 参考:http ://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/428c9db2-29f6-45d8-ab97-f00282397368/

             var query = (from a in DomainRep
             from b in DomainRep 
             where a.left >= b.left
             select b)
            .ToList();
于 2013-04-04T10:03:22.300 回答