I have a Grails criteria that has associated children classes that are nullable. I need to get all results, even those with null children, but the criteria gets executed with an INNER JOIN. How do I get it to be executed with a LEFT JOIN?

Grails version is 1.3.7 (most recent), query is being executed via createCriteria().list

link|improve this question

25% accept rate
What version of Grails? Also, how are you executing the query? Using dynamic finders? createCriteria? executeQuery? – Joshua Moore Aug 22 '11 at 23:26
Grails version is 1.3.7 (most recent), query is being executed via createCriteria().list – ArmlessJohn Aug 22 '11 at 23:33
I have merged your accounts and you are now re-united with your question. – Kev Aug 23 '11 at 9:44
feedback

1 Answer

try to use a hql statement. for left joins see: http://docs.jboss.org/hibernate/core/3.3/reference/en/html/queryhql.html

hql statements can be performed as follows: DomainClass.executeQuery("select from ....")

link|improve this answer
I really need to use criteria for this due to other business requirements. I have tried to use createAlias("childClass", "child", CriteriaSpecification.LEFT_JOIN) but I think I ran into this Grails bug. Still pulling my hairs over this. – ArmlessJohn Aug 23 '11 at 20:23
i would recommend to do it with hql, because you have more control about the join mechanism – hitty5 Aug 24 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.