I'm just getting started with the new(ish) class-based views, and I am wondering what's the best way to get select_related() in there. Here's my view:

class PostDetailView(DetailView):
    model = Post

The post comes from the 'slug' in the URL. This works fine, but, I would like to get select_related() in there to reduce the number of queries.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Specify a queryset instead of model:

class PostDetailView(DetailView):
    queryset = Post.objects.select_related()

(According to the docs, specifying model = Foo is the same as specifying queryset = Foo.objects.all(), although I'm not sure that's exactly right -- I think specifying model uses the default manager instead, which might not be objects.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.