“e condição com ou em django” Respostas de código

e condição com ou em django

Just adding this for multiple filters attaching to Q object, if someone might be looking to it. If a Q object is provided, it must precede the definition of any keyword arguments. Otherwise its an invalid query. You should be careful when doing it.

an example would be

from django.db.models import Q
User.objects.filter(Q(income__gte=5000) | Q(income__isnull=True),category='income')

Here the OR condition and a filter with category of income is taken into account
Old-fashioned Opossum

e condição com ou em django


from django.db.models import Q
User.objects.filter(Q(income__gte=5000) | Q(income__isnull=True))

Poised Plover

Respostas semelhantes a “e condição com ou em django”

Perguntas semelhantes a “e condição com ou em django”

Mais respostas relacionadas para “e condição com ou em django” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código