How to query directly the table created by Django for a ManyToMany relation?

本秂侑毒 提交于 2019-12-02 22:03:38

This is the many to many field instance:

MyModel2.mymodel1

This is the intermediary table model:

MyModel2.mymodel1.through

This is the intermediary model manager:

MyModel2.mymodel1.through.objects

This returns a queryset for all intermediary models:

MyModel2.mymodel1.through.objects.all()

This part of django docs talk about through. You can make a through model yourself, else it is automatically generated.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!