如何从一组子实例中获取所有相关/父实例而不循环遍历后一组实例

发布于 2024-08-08 05:21:54 字数 340 浏览 6 评论 0原文

请考虑以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2024-08-15 05:21:54

假设您有一个名为 children 的查询集:

ParentModel.objects.filter(children__in=children)

Assuming you have a queryset called children:

ParentModel.objects.filter(children__in=children)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文