diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-08-18 13:56:50 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-09-25 19:38:10 -0400 |
commit | 81d8394c0b5342cdc603cb2e07e12139c9506bf6 (patch) | |
tree | 5453f51ef80bb3b0b4705025070439fdccfea29c /lib/sqlalchemy/sql/base.py | |
parent | a8029f5a7e3e376ec57f1614ab0294b717d53c05 (diff) | |
download | sqlalchemy-81d8394c0b5342cdc603cb2e07e12139c9506bf6.tar.gz |
New ORM Query Guide featuring DML support
reviewers: these docs publish periodically at:
https://docs.sqlalchemy.org/en/gerrit/4042/orm/queryguide/index.html
See the "last generated" timestamp near the bottom of the
page to ensure the latest version is up
Change includes some other adjustments:
* small typing fixes for end-user benefit
* removal of a bunch of old examples for patterns that nobody
uses or aren't really what we promote now
* modernization of some examples, including inheritance
Change-Id: I9929daab7797be9515f71c888b28af1209e789ff
Diffstat (limited to 'lib/sqlalchemy/sql/base.py')
-rw-r--r-- | lib/sqlalchemy/sql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py index fbbf9f7f7..2a8479c6d 100644 --- a/lib/sqlalchemy/sql/base.py +++ b/lib/sqlalchemy/sql/base.py @@ -1068,7 +1068,7 @@ class Executable(roles.StatementRole): .. seealso:: - :ref:`deferred_options` - refers to options specific to the usage + :ref:`loading_columns` - refers to options specific to the usage of ORM queries :ref:`relationship_loader_options` - refers to options specific |