NHibernate HQL:左外部连接带有"with".子句不起作用 [英] NHibernate HQL: left outer join with "with" clause does not work

查看:219
本文介绍了NHibernate HQL:左外部连接带有"with".子句不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在EAV系统中,我的映射看起来像这样:

In an EAV system, I have a mapping that looks like this:

<class name="Record">
   <map name="Values" table="RecordFieldValue">
      <key column="RecordFK">
      <index column="FieldFK">
      <element column="Value">
   </map>
</class>

我想选择一些记录,按特定字段的每个记录的值排序.但是,请注意,并非所有记录实际上都具有该字段的值.在这种情况下,仍应提取记录并使用空值对其进行排序.

I would like to select some Records, ordered by the value of each Record for a specific Field. However, note that not all Records will actually have a Value for that Field. In this case, the record should still be fetched and sorted with a null value.

所需的SQL如下所示:

The desired SQL would look like this:

select rec.*, val.Value
from Record rec
left outer join RecordFieldValue val
on val.RecordFK = rec.PK and val.FieldFK = :field
order by val.Value

经过大量挖掘,我发现修改HQL左联接的"on"子句的正确方法是使用"with"关键字(请参阅

After a lot of digging, I found that the correct way to modify the "on" clause of the left join in HQL is with the "with" keyword (see https://nhibernate.jira.com/browse/NH-514). So I tried this HQL:

from Record rec
left join rec.Values vals with index(vals) = :field
order by vals

不幸的是,这会产生以下错误: with-clause表达式未引用with-clause所关联的from-clause元素.因此,我尝试了以下方法:

Unfortunately, this produces the following error: with-clause expressions did not reference from-clause element to which the with-clause was associated. So I tried this instead:

from Record rec
left join rec.Values vals with index(rec.Values) = :field
order by vals

但这产生了一个新错误: with子句只能引用驱动表中的列.

But that produced a new error: with clause can only reference columns in the driving table.

关于如何获得这项工作的任何想法?谢谢.

Any ideas on how to get this work? Thanks.

-布莱恩

推荐答案

这有效:

from Record rec
left join rec.Values vals with vals.index = :field
order by vals

不够直观或文档齐全,但是可以完成工作.

Not exactly intuitive or well-documented, but it gets the job done.

这篇关于NHibernate HQL:左外部连接带有"with".子句不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆