GORM Criteria Join

86 Views Asked by At

Given the following classes:

class Abc {
    String course 
    Date startDate
}

Class Xyz {
    Abc abc
    Date xyzInDate 
}

The end user will input provide the course and startDate and I need to find all Abc classes that match the course and the startDate matches the xyzInDate from the associated Xyz class.

0

There are 0 best solutions below