如何从一组子实例中获取所有相关/父实例而不循环遍历后一组实例
请考虑以下 Django 模型:
ParentModel(models.Model):
...
ChildModel(models.Model):
parent = models.ForeignKey(ParentModel, related_name='children')
假设数据库中所有子项的某个子集可用作查询集(称为第一组)。
现在,我想访问与第一组中的孩子相关的所有父母的子集(称为第二组)。
如何在不循环遍历Python级别的第一组(并可能导致线性数量的数据库命中)的情况下(即只有一两个数据库命中)做到这一点?
谢谢你!
Please regard the following Django models:
ParentModel(models.Model):
...
ChildModel(models.Model):
parent = models.ForeignKey(ParentModel, related_name='children')
Let's assume there is certain subset of all children in the database available as a queryset (call it the 1st set).
Now, I'd like to gain access to the subset of all parents (call it the 2nd set) that said children from the 1st set relate to.
How do you do that without looping through the 1st set at the python level (and potentially cause a linear number of DB hits), i.e., with only one or two DB hits?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个名为
children
的查询集:Assuming you have a queryset called
children
: