2005-07-31 08:20:56 +08:00
|
|
|
"""
|
|
|
|
10. One-to-one relationships
|
|
|
|
|
2005-08-04 10:35:26 +08:00
|
|
|
To define a one-to-one relationship, use ``OneToOneField()``.
|
2005-07-31 08:20:56 +08:00
|
|
|
|
2005-08-01 23:31:50 +08:00
|
|
|
In this example, a ``Place`` optionally can be a ``Restaurant``.
|
2005-07-31 08:20:56 +08:00
|
|
|
"""
|
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
from django.db import models
|
2005-07-31 08:20:56 +08:00
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
class Place(models.Model):
|
|
|
|
name = models.CharField(maxlength=50)
|
|
|
|
address = models.CharField(maxlength=80)
|
2005-07-31 08:20:56 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "%s the place" % self.name
|
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
class Restaurant(models.Model):
|
|
|
|
place = models.OneToOneField(Place)
|
|
|
|
serves_hot_dogs = models.BooleanField()
|
|
|
|
serves_pizza = models.BooleanField()
|
2005-07-31 08:20:56 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "%s the restaurant" % self.get_place().name
|
|
|
|
|
2005-12-14 13:02:51 +08:00
|
|
|
class Waiter(models.Model):
|
|
|
|
restaurant = models.ForeignKey(Restaurant)
|
|
|
|
name = models.CharField(maxlength=50)
|
2005-09-20 09:12:24 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
2005-11-21 06:17:00 +08:00
|
|
|
return "%s the waiter at %r" % (self.name, self.get_restaurant())
|
2005-09-20 09:12:24 +08:00
|
|
|
|
2005-07-31 08:20:56 +08:00
|
|
|
API_TESTS = """
|
|
|
|
# Create a couple of Places.
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> p1 = Place(name='Demon Dogs', address='944 W. Fullerton')
|
2005-07-31 08:20:56 +08:00
|
|
|
>>> p1.save()
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> p2 = Place(name='Ace Hardware', address='1013 N. Ashland')
|
2005-07-31 08:20:56 +08:00
|
|
|
>>> p2.save()
|
|
|
|
|
|
|
|
# Create a Restaurant. Pass the ID of the "parent" object as this object's ID.
|
2005-12-12 06:10:02 +08:00
|
|
|
>>> r = Restaurant(place=p1, serves_hot_dogs=True, serves_pizza=False)
|
2005-07-31 08:20:56 +08:00
|
|
|
>>> r.save()
|
|
|
|
|
|
|
|
# A Restaurant can access its place.
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> r.place
|
2005-07-31 08:20:56 +08:00
|
|
|
Demon Dogs the place
|
|
|
|
|
|
|
|
# A Place can access its restaurant, if available.
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> p1.restaurant
|
2005-07-31 08:20:56 +08:00
|
|
|
Demon Dogs the restaurant
|
|
|
|
|
|
|
|
# p2 doesn't have an associated restaurant.
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> p2.restaurant
|
2005-07-31 08:20:56 +08:00
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2005-12-12 06:10:02 +08:00
|
|
|
DoesNotExist: Restaurant does not exist for {'place__id__exact': ...}
|
2005-07-31 08:20:56 +08:00
|
|
|
|
2005-12-12 06:10:02 +08:00
|
|
|
# Restaurant.objects.get_list() just returns the Restaurants, not the Places.
|
2006-01-31 06:44:05 +08:00
|
|
|
>>> list(Restaurant.objects.all())
|
2005-07-31 08:20:56 +08:00
|
|
|
[Demon Dogs the restaurant]
|
|
|
|
|
2005-12-12 06:10:02 +08:00
|
|
|
# Place.objects.get_list() returns all Places, regardless of whether they have
|
2005-07-31 08:20:56 +08:00
|
|
|
# Restaurants.
|
2006-01-31 06:44:05 +08:00
|
|
|
>>> list(Place.objects.order_by('name'))
|
2005-07-31 08:20:56 +08:00
|
|
|
[Ace Hardware the place, Demon Dogs the place]
|
2005-08-26 06:51:30 +08:00
|
|
|
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Restaurant.objects.get(place__id__exact=1)
|
2005-08-26 06:51:30 +08:00
|
|
|
Demon Dogs the restaurant
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Restaurant.objects.get(pk=1)
|
2005-08-26 06:51:30 +08:00
|
|
|
Demon Dogs the restaurant
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Restaurant.objects.get(place__exact=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the restaurant
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Restaurant.objects.get(place__pk=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the restaurant
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Restaurant.objects.get(place__name__startswith="Demon")
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the restaurant
|
|
|
|
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Place.objects.get(id__exact=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the place
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Place.objects.get(pk=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the place
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Place.objects.get(restaurant__place__exact=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the place
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> Place.objects.get(restaurant__pk=1)
|
2006-01-08 14:16:05 +08:00
|
|
|
Demon Dogs the place
|
2005-09-20 09:12:24 +08:00
|
|
|
|
|
|
|
# Add a Waiter to the Restaurant.
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> w = r.waiter_set.add(name='Joe')
|
2005-09-20 09:12:24 +08:00
|
|
|
>>> w.save()
|
|
|
|
>>> w
|
|
|
|
Joe the waiter at Demon Dogs the restaurant
|
2005-11-21 10:34:05 +08:00
|
|
|
|
2006-01-08 14:16:05 +08:00
|
|
|
# Query the waiters
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> list(Waiter.objects.filter(restaurant__place__exact=1))
|
2006-01-08 14:16:05 +08:00
|
|
|
[Joe the waiter at Demon Dogs the restaurant]
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> list(Waiter.objects.filter(restaurant__pk=1))
|
2006-01-08 14:16:05 +08:00
|
|
|
[Joe the waiter at Demon Dogs the restaurant]
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> list(Waiter.objects.filter(id__exact=1))
|
2006-01-08 14:16:05 +08:00
|
|
|
[Joe the waiter at Demon Dogs the restaurant]
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> list(Waiter.objects.filter(pk=1))
|
2006-01-08 14:16:05 +08:00
|
|
|
[Joe the waiter at Demon Dogs the restaurant]
|
|
|
|
|
|
|
|
# Delete the restaurant; the waiter should also be removed
|
2006-01-30 08:38:23 +08:00
|
|
|
>>> r = Restaurant.objects.get(pk=1)
|
2005-11-21 10:34:05 +08:00
|
|
|
>>> r.delete()
|
2005-07-31 08:20:56 +08:00
|
|
|
"""
|