summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-27 12:33:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-27 12:33:10 -0400
commit8a307726b34d4adb374b0b618205dbcac31a15f5 (patch)
treec9e3adcd3b8c3a901d3f71c82a3f522f999155c8 /doc
parent80432f97edcd22a3b7820a65c821a8df0edf6434 (diff)
downloadsqlalchemy-8a307726b34d4adb374b0b618205dbcac31a15f5.tar.gz
hybrids: illustrate correlated subquery
Diffstat (limited to 'doc')
-rw-r--r--doc/build/orm/mapper_config.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build/orm/mapper_config.rst b/doc/build/orm/mapper_config.rst
index be0274abd..459a1dee6 100644
--- a/doc/build/orm/mapper_config.rst
+++ b/doc/build/orm/mapper_config.rst
@@ -406,6 +406,8 @@ needs to be present inside the hybrid, using the ``if`` statement in Python and
(cls.firstname != None, cls.firstname + " " + cls.lastname),
], else_ = cls.lastname)
+.. _mapper_column_property_sql_expressions:
+
Using column_property
---------------------