1
vote
1answer
197 views

Grails Projections not returning all properties and not grouped

How to get it so i return all of the projections from the below def c = Company.createCriteria() def a = c.list(params){ projections{ property 'id', property 'name' } } if(a.size() ...
3
votes
2answers
137 views

gorm projection and loss of metainformation

When using projection on the properties, the result is returned as the list with the elements in the same sequence as that defined in the projections block. At the same time the property names are ...
1
vote
1answer
77 views

how to trim a property in createCriteria

I am trying to trim a projection property but it does not let me do that. def c = Book.createCriteria() def books = c.list { projections { property ("title") } def now = new ...
2
votes
1answer
900 views

Grails / GORM criteria query with hasmany String

I have a domain object (Cat) like this: class Cat { String name static hasMany = [ nicknames: String ] } (A cat has a name, and also has many nicknames (which are Strings)) And I ...
0
votes
2answers
785 views

GORM createCriteria with one-to-many relation

since a couple of hours I try to figure out how to create a criteria with a kind of must-be-in-list criterion. If I reduce my code I have following two domain classes: Hotel - The base domain class ...