Answers for "grails projections"

0

projections in grails

def result = Person.createCriteria().list {
    projections {
        property('firstName')
        property('lastName')
    }
}
Posted by: Guest on February-11-2021

Browse Popular Code Answers by Language