| That "does not compute" Either you fetch it:
session.createQuery( "select root from RootThing root join fetch root.children" )...
or you don't:
session.createQuery( "select root from RootThing root join root.children" )...
IIRC there was a problem in the legacy Criteria API where any join was fetched. Maybe that is what you are seeing? |