diff options
Diffstat (limited to 'docs/ref/models/querysets.txt')
| -rw-r--r-- | docs/ref/models/querysets.txt | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 2fbcd4b942..fbe562c883 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -549,22 +549,17 @@ Examples (those after the first will only work on PostgreSQL): .. code-block:: pycon >>> Author.objects.distinct() - [...] - + <QuerySet [...]> >>> Entry.objects.order_by("pub_date").distinct("pub_date") - [...] - + <QuerySet [...]> >>> Entry.objects.order_by("blog").distinct("blog") - [...] - + <QuerySet [...]> >>> Entry.objects.order_by("author", "pub_date").distinct("author", "pub_date") - [...] - + <QuerySet [...]> >>> Entry.objects.order_by("blog__name", "mod_date").distinct("blog__name", "mod_date") - [...] - + <QuerySet [...]> >>> Entry.objects.order_by("author", "pub_date").distinct("author") - [...] + <QuerySet [...]> .. note:: Keep in mind that :meth:`order_by` uses any default related model ordering @@ -1204,7 +1199,7 @@ and run: .. code-block:: pycon >>> Pizza.objects.all() - ["Hawaiian (ham, pineapple)", "Seafood (prawns, smoked salmon)"... + <QuerySet [<Pizza: Hawaiian (ham, pineapple)>, <Pizza: Seafood (prawns, smoked salmon)>, ...]> The problem with this is that every time ``Pizza.__str__()`` asks for ``self.toppings.all()`` it has to query the database, so @@ -4240,7 +4235,7 @@ attribute: >>> prefetch = Prefetch("choice_set", queryset=voted_choices, to_attr="voted_choices") >>> Question.objects.prefetch_related(prefetch).get().voted_choices - [<Choice: The sky>] + <QuerySet [<Choice: The sky>]> >>> Question.objects.prefetch_related(prefetch).get().choice_set.all() <QuerySet [<Choice: Not much>, <Choice: The sky>, <Choice: Just hacking again>]> |
