基于Django中两个可选字段的多对多关系

时间:2019-07-19 20:15:00

标签: python django many-to-many django-orm

我有以下两个对象(不相关的字段除外):

class Item(models.Model):
    id = models.BigAutoField(primary_key=True)
    group_id = models.IntegerField(blank=True, null=True)

class Observation(models.Model):
    item_id = models.IntegerField(blank=True, null=True)
    group_id = models.IntegerField(blank=True, null=True)

加入它们是基于观察值的item_id或group_id:

SELECT o.*
FROM observations o
JOIN items i ON (i.id = o.item_id OR i.group_id = o.group_id)
...

这种类型的多对多关系可以在模型中描述吗,还是需要编写一个自定义字段?

1 个答案:

答案 0 :(得分:0)

如果您使用to_field将它们都声明为可空的ForeignKey,则可能会起作用:

class Observation(models.Model):
    item = models.ForeignKey('Item', related_name='observation_items', blank=True, null=True)
    group = models.ForeignKey('Item', to_field='group_id', related_name='observation_groups', blank=True, null=True)

现在您可以这样做:

Observation.objects.select_related('item', 'group')