2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
5. Many-to-many relationships
|
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
To define a many-to-many relationship, use ``ManyToManyField()``.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
In this example, an ``Article`` can be published in multiple ``Publication``
|
|
|
|
objects, and a ``Publication`` has multiple ``Article`` objects.
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class Publication(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
title = models.CharField(max_length=30)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2006-05-02 09:31:56 +08:00
|
|
|
return self.title
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('title',)
|
|
|
|
|
|
|
|
class Article(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
headline = models.CharField(max_length=100)
|
2006-05-02 09:31:56 +08:00
|
|
|
publications = models.ManyToManyField(Publication)
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2006-05-02 09:31:56 +08:00
|
|
|
return self.headline
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('headline',)
|
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
2006-05-02 09:31:56 +08:00
|
|
|
# Create a couple of Publications.
|
|
|
|
>>> p1 = Publication(id=None, title='The Python Journal')
|
|
|
|
>>> p1.save()
|
|
|
|
>>> p2 = Publication(id=None, title='Science News')
|
|
|
|
>>> p2.save()
|
|
|
|
>>> p3 = Publication(id=None, title='Science Weekly')
|
|
|
|
>>> p3.save()
|
|
|
|
|
|
|
|
# Create an Article.
|
|
|
|
>>> a1 = Article(id=None, headline='Django lets you build Web apps easily')
|
2008-06-12 12:13:16 +08:00
|
|
|
|
|
|
|
# You can't associate it with a Publication until it's been saved.
|
|
|
|
>>> a1.publications.add(p1)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
ValueError: 'Article' instance needs to have a primary key value before a many-to-many relationship can be used.
|
|
|
|
|
|
|
|
# Save it!
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a1.save()
|
|
|
|
|
|
|
|
# Associate the Article with a Publication.
|
|
|
|
>>> a1.publications.add(p1)
|
|
|
|
|
|
|
|
# Create another Article, and set it to appear in both Publications.
|
|
|
|
>>> a2 = Article(id=None, headline='NASA uses Python')
|
|
|
|
>>> a2.save()
|
|
|
|
>>> a2.publications.add(p1, p2)
|
|
|
|
>>> a2.publications.add(p3)
|
|
|
|
|
|
|
|
# Adding a second time is OK
|
|
|
|
>>> a2.publications.add(p3)
|
|
|
|
|
|
|
|
# Add a Publication directly via publications.add by using keyword arguments.
|
|
|
|
>>> new_publication = a2.publications.create(title='Highlights for Children')
|
|
|
|
|
|
|
|
# Article objects have access to their related Publication objects.
|
|
|
|
>>> a1.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a2.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Publication objects have access to their related Article objects.
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> p1.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> Publication.objects.get(id=4).article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# We can perform kwarg queries across m2m relationships
|
|
|
|
>>> Article.objects.filter(publications__id__exact=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> Article.objects.filter(publications__pk=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
2006-07-01 09:14:41 +08:00
|
|
|
>>> Article.objects.filter(publications=1)
|
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
|
|
|
>>> Article.objects.filter(publications=p1)
|
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
>>> Article.objects.filter(publications__title__startswith="Science")
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA uses Python>, <Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
>>> Article.objects.filter(publications__title__startswith="Science").distinct()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-05-15 07:49:29 +08:00
|
|
|
# The count() function respects distinct() as well.
|
|
|
|
>>> Article.objects.filter(publications__title__startswith="Science").count()
|
|
|
|
2
|
|
|
|
|
|
|
|
>>> Article.objects.filter(publications__title__startswith="Science").distinct().count()
|
|
|
|
1
|
|
|
|
|
2006-07-01 09:14:41 +08:00
|
|
|
>>> Article.objects.filter(publications__in=[1,2]).distinct()
|
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
|
|
|
>>> Article.objects.filter(publications__in=[1,p2]).distinct()
|
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
|
|
|
>>> Article.objects.filter(publications__in=[p1,p2]).distinct()
|
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA uses Python>]
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
# Reverse m2m queries are supported (i.e., starting at the table that doesn't
|
|
|
|
# have a ManyToManyField).
|
|
|
|
>>> Publication.objects.filter(id__exact=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> Publication.objects.filter(pk=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
>>> Publication.objects.filter(article__headline__startswith="NASA")
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
>>> Publication.objects.filter(article__id__exact=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> Publication.objects.filter(article__pk=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-07-01 09:14:41 +08:00
|
|
|
>>> Publication.objects.filter(article=1)
|
|
|
|
[<Publication: The Python Journal>]
|
|
|
|
>>> Publication.objects.filter(article=a1)
|
|
|
|
[<Publication: The Python Journal>]
|
|
|
|
|
|
|
|
>>> Publication.objects.filter(article__in=[1,2]).distinct()
|
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
|
|
|
|
>>> Publication.objects.filter(article__in=[1,a2]).distinct()
|
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
|
|
|
|
>>> Publication.objects.filter(article__in=[a1,a2]).distinct()
|
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# Excluding a related item works as you would expect, too (although the SQL
|
|
|
|
# involved is a little complex).
|
|
|
|
>>> Article.objects.exclude(publications=p2)
|
|
|
|
[<Article: Django lets you build Web apps easily>]
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
# If we delete a Publication, its Articles won't be able to access it.
|
|
|
|
>>> p1.delete()
|
|
|
|
>>> Publication.objects.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Highlights for Children>, <Publication: Science News>, <Publication: Science Weekly>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a1 = Article.objects.get(pk=1)
|
|
|
|
>>> a1.publications.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# If we delete an Article, its Publications won't be able to access it.
|
|
|
|
>>> a2.delete()
|
|
|
|
>>> Article.objects.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>]
|
2006-05-03 03:51:41 +08:00
|
|
|
>>> p2.article_set.all()
|
|
|
|
[]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Adding via the 'other' end of an m2m
|
|
|
|
>>> a4 = Article(headline='NASA finds intelligent life on Earth')
|
|
|
|
>>> a4.save()
|
|
|
|
>>> p2.article_set.add(a4)
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA finds intelligent life on Earth>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science News>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Adding via the other end using keywords
|
|
|
|
>>> new_article = p2.article_set.create(headline='Oxygen-free diet works wonders')
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA finds intelligent life on Earth>, <Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a5 = p2.article_set.all()[1]
|
|
|
|
>>> a5.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science News>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Removing publication from an article:
|
|
|
|
>>> a4.publications.remove(p2)
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# And from the other end
|
|
|
|
>>> p2.article_set.remove(a5)
|
|
|
|
>>> p2.article_set.all()
|
|
|
|
[]
|
|
|
|
>>> a5.publications.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
# Relation sets can be assigned. Assignment clears any existing set members
|
|
|
|
>>> p2.article_set = [a4, a5]
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA finds intelligent life on Earth>, <Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science News>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications = [p3]
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science Weekly>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Relation sets can be cleared:
|
|
|
|
>>> p2.article_set.clear()
|
|
|
|
>>> p2.article_set.all()
|
|
|
|
[]
|
|
|
|
>>> a4.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science Weekly>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# And you can clear from the other end
|
|
|
|
>>> p2.article_set.add(a4, a5)
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA finds intelligent life on Earth>, <Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Science News>, <Publication: Science Weekly>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a4.publications.clear()
|
|
|
|
>>> a4.publications.all()
|
|
|
|
[]
|
|
|
|
>>> p2.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2007-01-30 00:09:25 +08:00
|
|
|
# Relation sets can also be set using primary key values
|
|
|
|
>>> p2.article_set = [a4.id, a5.id]
|
|
|
|
>>> p2.article_set.all()
|
|
|
|
[<Article: NASA finds intelligent life on Earth>, <Article: Oxygen-free diet works wonders>]
|
|
|
|
>>> a4.publications.all()
|
|
|
|
[<Publication: Science News>]
|
|
|
|
>>> a4.publications = [p3.id]
|
|
|
|
>>> p2.article_set.all()
|
|
|
|
[<Article: Oxygen-free diet works wonders>]
|
|
|
|
>>> a4.publications.all()
|
|
|
|
[<Publication: Science Weekly>]
|
|
|
|
|
|
|
|
# Recreate the article and Publication we have deleted.
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> p1 = Publication(id=None, title='The Python Journal')
|
|
|
|
>>> p1.save()
|
|
|
|
>>> a2 = Article(id=None, headline='NASA uses Python')
|
|
|
|
>>> a2.save()
|
|
|
|
>>> a2.publications.add(p1, p2, p3)
|
|
|
|
|
|
|
|
# Bulk delete some Publications - references to deleted publications should go
|
|
|
|
>>> Publication.objects.filter(title__startswith='Science').delete()
|
|
|
|
>>> Publication.objects.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: Highlights for Children>, <Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> Article.objects.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>, <Article: NASA finds intelligent life on Earth>, <Article: NASA uses Python>, <Article: Oxygen-free diet works wonders>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> a2.publications.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Publication: The Python Journal>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Bulk delete some articles - references to deleted objects should go
|
|
|
|
>>> q = Article.objects.filter(headline__startswith='Django')
|
|
|
|
>>> print q
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: Django lets you build Web apps easily>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> q.delete()
|
|
|
|
|
|
|
|
# After the delete, the QuerySet cache needs to be cleared, and the referenced objects should be gone
|
|
|
|
>>> print q
|
|
|
|
[]
|
|
|
|
>>> p1.article_set.all()
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Article: NASA uses Python>]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-12-20 21:57:17 +08:00
|
|
|
# An alternate to calling clear() is to assign the empty set
|
|
|
|
>>> p1.article_set = []
|
|
|
|
>>> p1.article_set.all()
|
|
|
|
[]
|
|
|
|
|
|
|
|
>>> a2.publications = [p1, new_publication]
|
|
|
|
>>> a2.publications.all()
|
|
|
|
[<Publication: Highlights for Children>, <Publication: The Python Journal>]
|
|
|
|
>>> a2.publications = []
|
|
|
|
>>> a2.publications.all()
|
|
|
|
[]
|
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
"""}
|