是否可以为整个查询集向后跟踪 ForeignKey 关系?
我的意思是这样的:
x = table1.objects.select_related().filter(name='foo')
x.table2.all()
当 table1 hase ForeignKey to table2。
在 https://docs.djangoproject.com/en/1.2/topics/db/queries/#following-relationships-backward 我可以看到它只适用于 get() 而不是 filter()
谢谢