Author{
String name;
List<Book> books
static hasMany= [books: Book]
}
Book{
int number_of_pages;
String name;
}
I want to query and fetch top 10 books for a specific author sorted by number_of_pages
I want to query and fetch top 10 books for a specific author sorted by |
|||||
|
|
Using HQL you can do:
Note: you should rename |
|||
|
|
I suggest you make Author visible to Book, by adding an author as an attribute for Book. This way you could do:
Although, there's a much better way. If you make Author implement equals method, you can write:
Additionally, you can set an 'offset', this is, bring me 10 books starting from the x register. This is usefull for pagination:
An implementation of equals for Author could be:
|
||||
|