Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 2.1.7
I have the following segment of HQL:
e.area in (:areas)
The parameter :areas is a collection of entities.
But the query generated by Hibernate for the segment above is:
((escopo0_.OID_AREA in(?))
I can't find any hint to how can I make this work using pure HQL. I saw that the Criteria API contains a construct for this kind of query, but in my case it wouldn't be the right choice.
Is this kind of thing possible?
Thanks in Advance,
Eduardo Leite
Ps: Hibernate Rocks!