对于这种情况,如何编写 linq 查询?

发布于 2024-10-17 00:14:56 字数 410 浏览 1 评论 0原文

假设我有 3 个表:

TabA(id1, ...., id2, ...)

TabB(id2, ...)

TabC(id3, ...., id2, ...)

现在我想要的是找出TabC中的所有记录,这些记录应该能够通过其id1从TabA中识别出来。如果使用 SQL,查询将为

Select c.* from TabC c

join TabB b on c.id2 = b.id2

join TabA a on a.id2 = b.id2Where

id1 = inputID

当我为 SL 应用程序使用 EF 和 WCF Ria 服务时,如何编写此 linq?

this.ObjectContext.TabC.Where(.....

Suppose I have 3 tables:

TabA(id1, ...., id2, ...)

TabB(id2, ...)

TabC(id3, ...., id2, ...)

now what I want is to find out all records in TabC, those records should be able to be identified from TabA by its id1. If use SQL, the query would be

Select c.*
from TabC c

join TabB b on c.id2 = b.id2

join TabA a on a.id2 = b.id2

Where id1 = inputID

How to write this linq like when I use EF and WCF Ria Service for SL app?

this.ObjectContext.TabC.Where(.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临走之时 2024-10-24 00:14:56

我通常这样做(我发现它更容易阅读):

var q = 
from c in ctx.TabC
from b in ctx.TabB.Where(b=> b.id2 == c.id2)
from a in ctx.TabA.Where(a=> a.id2 == b.id2)
where a.id1 == inputID
select new {....};

我希望这有帮助!

I normaly do it this way(I find it easier to read):

var q = 
from c in ctx.TabC
from b in ctx.TabB.Where(b=> b.id2 == c.id2)
from a in ctx.TabA.Where(a=> a.id2 == b.id2)
where a.id1 == inputID
select new {....};

I hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文