from django.db.models import BooleanField, ExpressionWrapper, Q MyModel.objects.annotate( my_condition=ExpressionWrapper( Q(pk__lt=14), ...
確定! 回上一頁