I have a set of domain objects that are related like this:
class Book {
static belongsTo = [author: Author]
}
class Contract {
static belongsTo = [author: Author]
Book book
}
class Author {
static hasMany = [books: Book, contracts: Contract]
}
I'd like to create a query that joins against all a book's author's contracts where the contract book is "this" book. The question I want to answer is "what are all books under contract?" Here what I have for the criteria, but I don't know how to refer to the "this" object:
Book.createCriteria().list() {
author {
contracts {
eqProperty('book', '??') // what here??
}
}
}
Can I refer to the "this" object or somehow create an alias for it?