Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
211 views
in Technique[技术] by (71.8m points)

python - How to prefetch_related in reverse of a Django ManyToMany field

In Django, if I have a ManyToManyField:

class Topping(models.Model):
    name = models.CharField(max_length=30)

class Pizza(models.Model):
    name = models.CharField(max_length=50)
    toppings = models.ManyToManyField(Topping)

I can minimize hits on the database when accessing the Pizza model's toppings field by using prefetch_related():

Pizza.objects.all().prefetch_related('toppings')

How can I do the same but in reverse, to prefetch the pizza_set from a Topping queryset?

This doesn't work, and I couldn't find it in the docs:

Topping.objects.all().prefetch_related('pizza_set')

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This should work if you access the prefetched pizzas like this:

topping.pizza_set.all()

If you do something like

topping.pizza_set.filter(...some conditions etc...)

then it won't work and this is expected (as only specific query result is prefetched).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...