The manual states:
Quote:
Outer join fetching allows a graph of objects connected by many-to-one, one-to-many or one-to-one associations to be retrieved in a single SQL SELECT
Still, outer joining is only used when loading childs (the parent is outerjoined), not the other way around.
when I
Code:
CreateCriteria(parent.class)
hibernate does not outer join the Set attributes but uses selects (the Set is not lazy initialized, outerjoining is enabled and the max fetch depth is not specified (wich means unlimited depth))
Any ideas what can be preventing hibernate from outerjoining the properties?
Bas