summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/models.txt21
-rw-r--r--docs/topics/db/queries.txt2
2 files changed, 22 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index f4302e9746..465d9193a4 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -325,7 +325,7 @@ whatever you want. For example::
For details on accessing backwards-related objects, see the
`Following relationships backward example`_.
-
+
For sample code, see the `Many-to-one relationship model tests`_.
.. _Following relationships backward example: http://docs.djangoproject.com/en/dev/topics/db/queries/#backwards-related-objects
@@ -519,6 +519,25 @@ As you are using an intermediate model, you can also query on its attributes::
... membership__date_joined__gt=date(1961,1,1))
[<Person: Ringo Starr]
+If you need to access a membership's information you may do so by directly
+querying the ``Membership`` model::
+
+ >>> ringos_membership = Membership.objects.get(group=beatles, person=ringo)
+ >>> ringos_membership.date_joined
+ datetime.date(1962, 8, 16)
+ >>> ringos_membership.invite_reason
+ u'Needed a new drummer.'
+
+Another way to access the same information is by querying the
+:ref:`many-to-many reverse relationship<m2m-reverse-relationships>` from a
+``Person`` object::
+
+ >>> ringos_membership = ringo.membership_set.get(group=beatles)
+ >>> ringos_membership.date_joined
+ datetime.date(1962, 8, 16)
+ >>> ringos_membership.invite_reason
+ u'Needed a new drummer.'
+
One-to-one relationships
~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 8e2c0cc021..23ed124fa5 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -1036,6 +1036,8 @@ Each "reverse" operation described in this section has an immediate effect on
the database. Every addition, creation and deletion is immediately and
automatically saved to the database.
+.. _m2m-reverse-relationships:
+
Many-to-many relationships
--------------------------