Is it possible to implement the following query using Criteria API?
select order from ORDER as order,ITEM as item
where item.itemID like 'ITM_01' and item in elements(order.items)
|
|
|
|
|
|
|
To answer the question in the title - no, there's no direct equivalent for However, your query's use of
Equivalent criteria would have to use nested criteria instance to access collection:
Another alternative is to use aliases:
Note that you don't need to use |
||
|
|