diff --git a/reference/en/modules/query_hql.xml b/reference/en/modules/query_hql.xml
index b310943769..2874c3a07f 100644
--- a/reference/en/modules/query_hql.xml
+++ b/reference/en/modules/query_hql.xml
@@ -148,12 +148,22 @@
- Note that, in the current implementation, only one collection role may be fetched
- in a query (everything else would be non-performant). Note also that the
- fetch construct may not be used in queries called using
+ Note that, in the current implementation, only one collection role may be join fetched
+ in a query (more than one role will usually result in a cartesian product). Note also
+ that the fetch construct may not be used in queries called using
scroll() or iterate(). Finally, note that
- full join fetch and right join fetch are not meaningful.
+ full join fetch and right join fetch are not
+ meaningful.
+
+
+ If you are using property-level lazy fetching (with bytecode instrumentation), it is
+ possible to force Hibernate to fetch the lazy properties immediately (in the first
+ query) using fetch all properties.
+
+
+
+