Django 中的链式反向查找

发布于 2024-11-27 10:45:57 字数 289 浏览 0 评论 0原文

我有[个人资料] --M2M--> [group] --FK--> [组类别]

给定一个[groupcategory]实例,我需要检索所有相关的[profile]

(英语:我有属于一个或多个组的成员,这些组属于类别。我需要找到给定组类别中的所有成员)。

如何跨越外键和多对多键?无论我如何分割它,我总是会得到一个无法定义下一个向后关系的表达式。

谢谢。

I have [profile] --M2M--> [group] --FK--> [group category].

Given an instance of [group category], I need to retrieve all related [profile].

(In english: I have members belonging to one or more groups, which are in categories. I need to find all the members in a given category of group).

How do I span the ForeignKey and ManytoMany keys in between? No matter how I slice this, I always end up with an expression from which I can't define the next backward relationship.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

感受沵的脚步 2024-12-04 10:45:57

假设类似:

object Profile():
    groups = models.ManyToManyField('Group')

object Group():
    category = models.ForeignKey('GroupCategory')

您应该能够查询它:

profiles = Profile.objects.filter(groups__category=thegroupcategory)

Assuming something like:

object Profile():
    groups = models.ManyToManyField('Group')

object Group():
    category = models.ForeignKey('GroupCategory')

You should be able to just query it:

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