1

我需要检索在关联列表中特定位置具有特定值的实体。

我可以使用 HQL 实现这一点,如下所示:

from Cat c
where c.kittens[0].name = 'whiskers'
and c.kittens[1].name = 'mittens'

我现在想将此限制添加到使用条件 API 的现有搜索中。我在该 API 中看不到任何类似于数组下标符号的内容。使用标准的等价物是什么?

4

0 回答 0