I have the following table structures:
Task - (has one) - mandate
Mandate - (has many) - mandateContacts (of type Contact)
Contact
Of course, Hibernate created a table called mandate_contact
which links those contacts to a mandate.
I have to write a criteria starting from the Task
table which should sound like:
Fetch a task if one of the contacts associated to a mandate has a specific name.
So far, I have created aliases like:
createAlias('mandate', 'mnd', CriteriaSpecification.LEFT_JOIN)
This is quite simple using the criteria builder:
The above assumes that your
Task
domain class which has amandate
property of theMandate
domain class type. TheMandate
has a collection calledmandateContacts
which is a collection of theContact
domain class and that theContact
domain class has a property calledname
which you want to match against.I recommend you read the documentation I linked to to understand createCriteria and how it functions.