如何将以下查询转换为 linq?

发布于 2024-10-19 21:09:17 字数 407 浏览 0 评论 0原文

我是 nhibernate 3.0 的新手:

我有 3 个对象(不是代码,只是描述)

class a{ 支柱 b; }

b 类{ 支柱c }

类 c{ 长ID 我通过代码

编写了以下查询

session.QueryOver<a>().
JoinQueryOver<b>(a1 => a1.b, JoinType.LeftOuterJoin).
JoinQueryOver<c>(b1 => b1.c, JoinType.LeftOuterJoin).
Where(c1=>c1.id == someNumber);

,并且得到了我期望得到的查询!

可以用linq写吗?如何 ?

I'm new to nhibernate 3.0:

I got 3 objects (not code just description)

class a{
prop b;
}

class b{
prop c
}

class c{
long id
}

I wrote the following query over code

session.QueryOver<a>().
JoinQueryOver<b>(a1 => a1.b, JoinType.LeftOuterJoin).
JoinQueryOver<c>(b1 => b1.c, JoinType.LeftOuterJoin).
Where(c1=>c1.id == someNumber);

and i get exactly the query I expected to get!

Is it possible to write it in linq ? how ?

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

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

发布评论

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

评论(1

东京女 2024-10-26 21:09:17

LINQ 提供程序尚不支持左联接。

Left joins are not yet supported in the LINQ provider.

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