diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-05-16 11:00:41 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-05-16 11:00:41 -0400 |
commit | 75c8b88cddeeadb539fce1c038997d0aebe6f621 (patch) | |
tree | ccd6b0137fa87e5ff7879e51047cc8b7cfe5ea84 | |
parent | 6079158b21da7598ff37115649bbdd955713eb11 (diff) | |
download | sqlalchemy-75c8b88cddeeadb539fce1c038997d0aebe6f621.tar.gz |
- move additional sections under with_polymorphic missed
in the previous change
Change-Id: I20217d4d4ebfc033229d87e472ad82d32202617a
-rw-r--r-- | doc/build/orm/inheritance_loading.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/orm/inheritance_loading.rst b/doc/build/orm/inheritance_loading.rst index 6aa371c62..cbb087617 100644 --- a/doc/build/orm/inheritance_loading.rst +++ b/doc/build/orm/inheritance_loading.rst @@ -244,7 +244,7 @@ specific to ``Engineer`` as well as ``Manager`` in terms of ``eng_plus_manager`` Setting with_polymorphic at mapper configuration time ------------------------------------------------------ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The :func:`.orm.with_polymorphic` function serves the purpose of allowing "eager" loading of attributes from subclass tables, as well as the ability @@ -294,7 +294,7 @@ subclasses. When using concrete inheritance, special helpers are provided to help with these patterns which are described at :ref:`concrete_polymorphic`. Setting with_polymorphic against a query ----------------------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The :func:`.orm.with_polymorphic` function evolved from a query-level method :meth:`.Query.with_polymorphic`. This method has the same purpose @@ -411,7 +411,7 @@ such as when the embedded criterion is in terms of a subclass:: .. _eagerloading_polymorphic_subtypes: Eager Loading of Specific or Polymorphic Subtypes -++++++++++++++++++++++++++++++++++++++++++++++++++ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The :func:`.joinedload`, :func:`.subqueryload`, :func:`.contains_eager` and other eagerloader options support |