标签: hibernate hql criteria-api hibernate-criteria
我需要检索在关联列表中的特定位置具有特定值的实体。
我可以使用HQL实现此目的:
from Cat c where c.kittens[0].name = 'whiskers' and c.kittens[1].name = 'mittens'
我现在想要将此限制添加到使用条件API的现有搜索中。我没有看到与该API中的数组下标符号类似的任何内容。使用标准的等价物是什么?