任意加入 Django Models
假设模型 X
有一个字段 n
(整数)。现在我还有一个模型 Y
,其中包含字段 n
和 m
(整数)。是否可以使用 Django ORM 选择 x
(模型 X
) 以便存在 y
(模型 Y
)对于给定的m
值,xn = yn
和ym = m
?
请不要建议我在两个模型之间引入 ForeignKey
关系或类似的关系。我想具体知道是否可以在不修改模型的情况下实现这一目标。在我正在处理的具体情况下,给定的关系是通用的。通用关系的反面可以是任何东西,所以根据文档,我不能在不同的模型中多次引入 GenericRelation 。
Let's say model X
has a field n
(an integer). Now I also have a model Y
which has fields n
and m
(integers). Is it possible using Django ORM to select x
(model X
) such that there exists y
(model Y
) such that x.n = y.n
and y.m = m
for a given value of m
?
Please don't advise me to introduce a ForeignKey
relationship between the two models or anything like that. I'd like to know specifically if it's possible to achieve this without modifying the model. In the exact case that I'm working on, the given relationships are generic. And the opposite side of the generic relationship can be anything, so according to the docs I cannot really introduce GenericRelation
multiple times in different models.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想这可以使用
额外
QuerySet
方法。(我没有测试过)
i suppose this could be achieved using
extra
QuerySet
method.(i didn't tested it)
您可以使用原始 sql 来执行此操作:
使用 ORM,我认为您可以使用
values_list
和in
过滤器来执行此操作:编辑:
正如评论中所述,此方法会对数据库造成很大影响
You can do this using raw sql:
using the ORM, i think you can do this using
values_list
and thein
filter:edit:
As noted in the comments this method will hit the db a lot