Django 中的链式反向查找
我有[个人资料]
--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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设类似:
您应该能够查询它:
Assuming something like:
You should be able to just query it: