Suppose I have the following Domain class:
class Book {
String title
String author
byte[] largeCoverArtImage
}
I have a list view where I do not need to display largeCoverArtImage
, how can I perform the following SQL query using GORM Criteria?
select title, author from Book