OK that sounds great.
The chapter on 12.1 on proxies is excellent.
One point remains fuzzy though, it's about hibernate.use_outer_join impact on outer-join attribute behavior:
The combination of hibernate.use_outer_join and outer-join="true|false" in association allows me to fine tune graph loading.
I read:
Quote:
auto (default) Fetch the association using an outerjoin if the associated class has no proxy
From that I suppose that outer-join=auto is not impacted by the hibernate.use_outer_join setting.
outer-join=false explicitely disable eager fetching (whatever hibernate.use_outer_join says)
outer-join=true enable eager fetching only if hibernate.use_outer_join is true
Is it correct
Many thanks