grails-data-mapping icon indicating copy to clipboard operation
grails-data-mapping copied to clipboard

Ordering an association property overrides the join type

Open jameskleeh opened this issue 6 years ago • 0 comments

new DetachedCriteria(Book).build {
    author {
        order("name")
    }
    join("author", JoinType.LEFT)
}

results in the author being joined with an inner join

jameskleeh avatar Nov 06 '18 16:11 jameskleeh