Refs #2217 -- Updated DB API docs to discuss filtering using objects rather than IDs.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2006-07-09 03:51:37 +00:00
parent 78c91dd7df
commit 88189399b1
1 changed files with 21 additions and 10 deletions

View File

@ -1121,35 +1121,37 @@ Note this is only available in MySQL and requires direct manipulation of the
database to add the full-text index.
Default lookups are exact
~~~~~~~~~~~~~~~~~~~~~~~~~
-------------------------
If you don't provide a lookup type -- that is, if your keyword argument doesn't
contain a double underscore -- the lookup type is assumed to be ``exact``.
For example, the following two statements are equivalent::
Blog.objects.get(id=14)
Blog.objects.get(id__exact=14)
Blog.objects.get(id__exact=14) # Explicit form
Blog.objects.get(id=14) # __exact is implied
This is for convenience, because ``exact`` lookups are the common case.
The pk lookup shortcut
~~~~~~~~~~~~~~~~~~~~~~
----------------------
For convenience, Django provides a ``pk`` lookup type, which stands for
"primary_key". This is shorthand for "an exact lookup on the primary-key."
In the example ``Blog`` model, the primary key is the ``id`` field, so these
two statements are equivalent::
three statements are equivalent::
Blog.objects.get(id__exact=14)
Blog.objects.get(pk=14)
Blog.objects.get(id__exact=14) # Explicit form
Blog.objects.get(id=14) # __exact is implied
Blog.objects.get(pk=14) # pk implies id__exact
``pk`` lookups also work across joins. For example, these two statements are
``pk`` lookups also work across joins. For example, these three statements are
equivalent::
Entry.objects.filter(blog__id__exact=3)
Entry.objects.filter(blog__pk=3)
Entry.objects.filter(blog__id__exact=3) # Explicit form
Entry.objects.filter(blog__id=3) # __exact is implied
Entry.objects.filter(blog__pk=3) # __pk implies __id__exact
Lookups that span relationships
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -1550,6 +1552,15 @@ loaded, Django iterates over every model in ``INSTALLED_APPS`` and creates the
backward relationships in memory as needed. Essentially, one of the functions
of ``INSTALLED_APPS`` is to tell Django the entire model domain.
Queries over related objects
----------------------------
When specifying a query over a related object, you have the option of
b = Blog.objects.get(id=5)
e1 = Entry.objects.filter()
Deleting objects
================