对于这种情况,如何编写 linq 查询?
假设我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常这样做(我发现它更容易阅读):
我希望这有帮助!
I normaly do it this way(I find it easier to read):
I hope this helps!