I have two entities A,B the relation is on way, optional, One-To-Many from A to B (the many side), I want to select each B and its related A (or in case there is no A related to that B I want null), that can be easily done with right outer join but the problem that hibernate doesn't support right outer join in criteria API so I want a work around for this.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
As per your scenario you want to use left join. like
or if you want any criteria before join then use
this with will server similar purpose which is served with "and" with "on" clause example:
This will get all templates having no profiles with type 1 |
||||
|
|
CriteriaAPI if the association isn't modelled in the direction you're navigating. You could try using HQL and writing an ANSI-89 join equivalent of the right outer join you want (hoping the RDBM's optimizer will effectively perform a join). – Xavi López May 11 '12 at 9:54