通过django中的多个外键关系过滤

Filtering down through multiple ForeignKey relations in django

我正在尝试通过多个外键关系了解每个酒店有很多房间,每个房间有很多房价计划,每个房价计划有很多价格。

如果你想想它就像圣诞树:

酒店
v
房间
v
费率计划
v
价格

我如何执行查询,将 return 某些 hotel_city 的酒店、某些 price_date、某些 price_price 和某些 price_availability 的酒店? (就像 Expedia 或 booking.com 查询一样)

例如:

Hotel.objects.filter(city='Beirut').filter(room__name=Room.objects.filter(rateplan__name=Rateplan.objects.filter(prices__availability=Prices.objects.filter(availability=1))))

我查看了 Django 复杂查询文档和 annotate/aggregate 但无法理解它。

我的以下模型:

class Hotel(models.Model):
    name = models.CharField(max_length=64)
    city = models.CharField(max_length=64, default='Warsaw')

class Room(models.Model):
    hotel_id = models.ForeignKey(Hotel, on_delete=models.CASCADE, related_name='room')
    name = models.CharField(max_length=64, default='Double')

class Rateplan(models.Model):
    room_id = models.ForeignKey(Room, on_delete=models.CASCADE, related_name='rateplan')
    name = models.CharField(max_length=64, default='Standard')

class Prices(models.Model):
    rateplan_id = models.ForeignKey(Rateplan, on_delete=models.CASCADE, related_name='prices')
    date = models.DateField()
    price_1 = models.DecimalField(null=False, max_digits=7, decimal_places=2)
    price_2 = models.DecimalField(null=False, max_digits=7, decimal_places=2)
    availability = models.SmallIntegerField()```

您可以使用 __ 跨关系过滤您需要的值

documentation

中有很好的例子
Hotel.objects.filter(
    city=your_city,
    room__rateplan__prices__date=your_date,
    room__rateplan__prices__price_1=your_price,
    room__rateplan__prices__availability=your_availability,
).distinct()