I have the following domain classes (Only trying to show what is needed to get the idea) :
class Scholarship {
static hasMany = [grades:Grade]
}
and
class Grade {
String id
String description
}
In words I would like to, "Get all scholarships where the associated grade_id = myId". I would like to accomplish this using grails domain classes and not using sql. Any help appreciated
Are you looking for something like this?...
EDIT
A comment below adds to the original question and asks what if another relationship was expressed like this...
The query I show above would still be exactly the same. The fact that there is a
majors
collection would not be relevant unless you wanted to include some attribute ofMajor
to also be part of the criteria, which could look something like this...I hope that helps.