From a40124fcb25cc23fa8873c8e2dc3e558672b5439 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 2 Jan 2011 20:41:30 -0500 Subject: [PATCH] finish an unfinished sentence --- doc/build/orm/loading.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/build/orm/loading.rst b/doc/build/orm/loading.rst index e2fc9f6dd3..3ef2afa44c 100644 --- a/doc/build/orm/loading.rst +++ b/doc/build/orm/loading.rst @@ -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 -- 2.47.2