我有Item
个对象,其属性集被定义为地图。现在我想要检索具有特定属性的所有对象(name
,locale
和value
)
Item
映射的一个例子:
<map table="ITEM_ATTRIBUTES" name="attributes">
<key column="item_id" foreign-key="fk_itmr_attrbts_itmrs"/>
<composite-index class="LocalizedKey">
<key-property name="name" column="name"/>
<key-property name="locale" column="locale" length="32"/>
</composite-index>
<element column="value" type="escapedString" not-null="true"/>
</map>
此HQL(:key
为LocalizedKey
且:value
为String
)
from Item item
where item.attributes[:key] = :value
不起作用并产生以下输出
error: composite-index appears in []
我在查询中使用纯SQL创建了一种解决方法。但是我想知道是否有办法在HQL中执行此操作。
我的plain-sql解决方法:
select i.* from items i
left join item_attributes a on a.item_id = i.id
where a.name = :name
and a.locale = :locale
and a.value = :value
答案 0 :(得分:1)
文档提示index()运算符应该从地图返回密钥。鉴于您的密钥是一个复合对象,我不完全确定您将在查询中使用该密钥。我向你提出建议之前没有能够对此进行测试表示歉意,但这是我试着看看你得到的东西:
from Item item join item.attributes attr where attr.index().name = :name
and attr.index().locale = :locale and attr.value = :value