2005-07-29 23:15:40 +08:00
|
|
|
"""
|
|
|
|
5. Many-to-many relationships
|
|
|
|
|
|
|
|
To define a many-to-many relationship, use ManyToManyField().
|
|
|
|
|
|
|
|
In this example, an article can be published in multiple publications,
|
|
|
|
and a publication has multiple articles.
|
|
|
|
"""
|
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
from django.db import models
|
2005-07-29 23:15:40 +08:00
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
class Publication(models.Model):
|
|
|
|
title = models.CharField(maxlength=30)
|
2005-07-29 23:15:40 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.title
|
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(maxlength=100)
|
|
|
|
publications = models.ManyToManyField(Publication)
|
2005-07-29 23:15:40 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.headline
|
|
|
|
|
|
|
|
API_TESTS = """
|
|
|
|
# Create a couple of Publications.
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> p1 = Publication(id=None, title='The Python Journal')
|
2005-07-29 23:15:40 +08:00
|
|
|
>>> p1.save()
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> p2 = Publication(id=None, title='Science News')
|
2005-07-29 23:15:40 +08:00
|
|
|
>>> p2.save()
|
2005-12-31 00:38:26 +08:00
|
|
|
>>> p3 = Publication(id=None, title='Science Weekly')
|
|
|
|
>>> p3.save()
|
2005-07-29 23:15:40 +08:00
|
|
|
|
|
|
|
# Create an Article.
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> a1 = Article(id=None, headline='Django lets you build Web apps easily')
|
2005-07-29 23:15:40 +08:00
|
|
|
>>> a1.save()
|
|
|
|
|
|
|
|
# Associate the Article with one Publication. set_publications() returns a
|
|
|
|
# boolean, representing whether any records were added or deleted.
|
|
|
|
>>> a1.set_publications([p1.id])
|
|
|
|
True
|
|
|
|
|
|
|
|
# If we set it again, it'll return False, because the list of Publications
|
|
|
|
# hasn't changed.
|
|
|
|
>>> a1.set_publications([p1.id])
|
|
|
|
False
|
|
|
|
|
|
|
|
# Create another Article, and set it to appear in both Publications.
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> a2 = Article(id=None, headline='NASA uses Python')
|
2005-07-29 23:15:40 +08:00
|
|
|
>>> a2.save()
|
|
|
|
>>> a2.set_publications([p1.id, p2.id])
|
|
|
|
True
|
|
|
|
>>> a2.set_publications([p1.id])
|
|
|
|
True
|
2005-12-31 00:38:26 +08:00
|
|
|
>>> a2.set_publications([p1.id, p2.id, p3.id])
|
2005-07-29 23:15:40 +08:00
|
|
|
True
|
|
|
|
|
|
|
|
# Article objects have access to their related Publication objects.
|
|
|
|
>>> a1.get_publication_list()
|
|
|
|
[The Python Journal]
|
|
|
|
>>> a2.get_publication_list()
|
2005-12-31 00:38:26 +08:00
|
|
|
[The Python Journal, Science News, Science Weekly]
|
2005-07-29 23:15:40 +08:00
|
|
|
|
2005-08-10 06:53:43 +08:00
|
|
|
# Publication objects have access to their related Article objects.
|
|
|
|
>>> p2.get_article_list()
|
|
|
|
[NASA uses Python]
|
|
|
|
>>> p1.get_article_list(order_by=['headline'])
|
|
|
|
[Django lets you build Web apps easily, NASA uses Python]
|
|
|
|
|
2005-12-31 00:38:26 +08:00
|
|
|
# We can perform kwarg queries across m2m relationships
|
2006-01-08 14:16:05 +08:00
|
|
|
>>> Article.objects.get_list(publications__id__exact=1)
|
|
|
|
[Django lets you build Web apps easily, NASA uses Python]
|
2005-12-31 00:38:26 +08:00
|
|
|
>>> Article.objects.get_list(publications__pk=1)
|
|
|
|
[Django lets you build Web apps easily, NASA uses Python]
|
|
|
|
|
|
|
|
>>> Article.objects.get_list(publications__title__startswith="Science")
|
|
|
|
[NASA uses Python, NASA uses Python]
|
|
|
|
|
|
|
|
>>> Article.objects.get_list(publications__title__startswith="Science", distinct=True)
|
|
|
|
[NASA uses Python]
|
|
|
|
|
|
|
|
# Reverse m2m queries (i.e., start at the table that doesn't have a ManyToManyField)
|
2006-01-08 14:16:05 +08:00
|
|
|
>>> Publication.objects.get_list(id__exact=1)
|
|
|
|
[The Python Journal]
|
|
|
|
>>> Publication.objects.get_list(pk=1)
|
|
|
|
[The Python Journal]
|
|
|
|
|
2006-01-26 05:51:13 +08:00
|
|
|
>>> Publication.objects.get_list(article__headline__startswith="NASA")
|
2005-12-31 00:38:26 +08:00
|
|
|
[The Python Journal, Science News, Science Weekly]
|
|
|
|
|
2006-01-26 05:51:13 +08:00
|
|
|
>>> Publication.objects.get_list(article__id__exact=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
[The Python Journal]
|
|
|
|
|
2006-01-26 05:51:13 +08:00
|
|
|
>>> Publication.objects.get_list(article__pk=1)
|
2005-12-31 00:38:26 +08:00
|
|
|
[The Python Journal]
|
|
|
|
|
2005-08-10 08:21:41 +08:00
|
|
|
# If we delete a Publication, its Articles won't be able to access it.
|
|
|
|
>>> p1.delete()
|
2005-12-12 11:01:57 +08:00
|
|
|
>>> Publication.objects.get_list()
|
2005-12-31 00:38:26 +08:00
|
|
|
[Science News, Science Weekly]
|
2005-12-12 11:01:57 +08:00
|
|
|
>>> a1 = Article.objects.get_object(pk=1)
|
2005-08-10 08:21:41 +08:00
|
|
|
>>> a1.get_publication_list()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# If we delete an Article, its Publications won't be able to access it.
|
2005-08-10 06:56:43 +08:00
|
|
|
>>> a2.delete()
|
2005-12-12 11:01:57 +08:00
|
|
|
>>> Article.objects.get_list()
|
2005-08-10 06:56:43 +08:00
|
|
|
[Django lets you build Web apps easily]
|
|
|
|
>>> p1.get_article_list(order_by=['headline'])
|
|
|
|
[Django lets you build Web apps easily]
|
2005-07-29 23:15:40 +08:00
|
|
|
"""
|