Hibernate Criteria query on association
- by DD
Hi There,
How would I go about executing the following Hibernate query using the criteria API.
I have an object Parent with List children. I would like to search through all parents and find which parents contain a specified child.
i.e. List findParent(Child child);
Thanks.