nhibernate 左连接 linq

发布于 2024-11-01 18:56:45 字数 98 浏览 0 评论 0原文

据我了解,nhibernate 3.1 不支持使用 linq 语法进行左连接,我们必须使用 hql。

但有人知道这个功能是否有计划吗?什么时候?

谢谢

I understand that nhibernate 3.1 does not support left join with the linq syntax and we have to use hql.

But does someone know if that feature is planned ? and when ?

Thanks

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

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

发布评论

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

评论(1

征棹 2024-11-08 18:56:45

显然没有关于该功能的详细信息

HQL 中左连接的一个小例子:

        var hql = @"select c.IdClient as IdClient, c.Denomination As Denomination, g.IdGriffe as IdGriffe
                    from Client c
                    left outer join c.GriffeClient gc
                    left outer join gc.Griffe g
                    with g.IdGriffe = :id
                    order by c.Denomination";

        var retour = session.CreateQuery(hql)
                .SetInt32("id", id)
                .SetResultTransformer(new NHibernate.Transform.AliasToEntityMapResultTransformer())
                .List();

问候

Apparently no details about that feature

A little example of Left join in HQL :

        var hql = @"select c.IdClient as IdClient, c.Denomination As Denomination, g.IdGriffe as IdGriffe
                    from Client c
                    left outer join c.GriffeClient gc
                    left outer join gc.Griffe g
                    with g.IdGriffe = :id
                    order by c.Denomination";

        var retour = session.CreateQuery(hql)
                .SetInt32("id", id)
                .SetResultTransformer(new NHibernate.Transform.AliasToEntityMapResultTransformer())
                .List();

Regards

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