Tagged Questions
0
votes
1answer
207 views
CreateCriteria with projections does not select all columns
My Question is exactly like
Grails Projections not returning all properties and not grouped
I have a following criteria
def sharedDocumentsInstanceList ...
1
vote
1answer
83 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 ...