Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 django 模型有疑问,我不知道如何创建查询...
我有三个类/模型:
所以每个 C 都有它的 A(而每个 A 可以有更多的 As)但没有直接的外键 - 它必须通过 B。
我有另一个查询得到的 Cs 子集。现在我想选择子集中有 C 的 As。我该怎么办?
假设是您拥有的对象c_subset的子集,要获得具有这些s 的 s 您可以执行CAC
c_subset
C
A
>>> A.objects.filter(b__c__in = c_subset)