Hibernate Criteria API equivalent for "elements()"

Posted by Ivan on Stack Overflow See other posts from Stack Overflow or by Ivan
Published on 2009-11-06T15:21:12Z Indexed on 2010/04/24 21:23 UTC
Read the original article Hit count: 241

Filed under:
|

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)

© Stack Overflow or respective owner

Related posts about hibernate

Related posts about criteria