以下のような、 ParentDomain を親ドメイン、 子をChildDomain の関係があるドメインで、
1 2 3 4 5 6 7 8 9 10 |
class ChildDomain { static belongsTo = [parent : ParentDomain] } class ParentDomain { String name } |
Criteria で検索する場合は、
1 2 3 4 5 6 7 8 |
def childDomainCreatiria = ChildDomain.createCriteria() def resultList = childDomainCreatiria.list { parent { eq("name", "search name') } } |
のように、して検索できる。