]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
finish an unfinished sentence
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jan 2011 01:41:30 +0000 (20:41 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jan 2011 01:41:30 +0000 (20:41 -0500)
doc/build/orm/loading.rst

index e2fc9f6dd349d5b415a28a3e1b4d0ca8acdbd2a6..3ef2afa44c98e7272fd17afe0b7068f04a36549e 100644 (file)
@@ -40,7 +40,9 @@ In the :ref:`ormtutorial_toplevel`, we introduced the concept of **Eager
 Loading**. We used an ``option`` in conjunction with the
 :class:`~sqlalchemy.orm.query.Query` object in order to indicate that a
 relationship should be loaded at the same time as the parent, within a single
-SQL query.   This option, known as :func:`.joinedload`
+SQL query.   This option, known as :func:`.joinedload`, connects a JOIN (by default
+a LEFT OUTER join) to the statement and populates the scalar/collection from the
+same result set as that of the parent:
 
 .. sourcecode:: python+sql