我有一个餐馆应用程序。我有这个模型:
class Product(models.Model):
name = models.CharField(max_length=50)
price = models.PositiveIntegerField()
我有一个名为TopSelled的列表,如下所示:
['Beer', 'Burger', ...]
我想聚合一个名为“ Hot”的布尔字段,这取决于产品是否为“畅销商品”。
所以我的注释应该是这样的:
Product.objects.all().annotate(if Product.Name in List: HOT = True ELSE Hot = False)
我该如何实现?谢谢!
答案 0 :(得分:3)
尝试使用Case
进行注释:
from django.db.models import BooleanField
from django.db.models.expressions import Case, When
Product.objects.annotate(hot=Case(
When(name__in=hot_list, then=True),
output_field=BooleanField())
).filter(hot=True)