grails-data-mapping
grails-data-mapping copied to clipboard
Ordering an association property overrides the join type
new DetachedCriteria(Book).build {
author {
order("name")
}
join("author", JoinType.LEFT)
}
results in the author being joined with an inner join