“O filtro django existe onetoone vazio” Respostas de código

O filtro django existe onetoone vazio

User.objects.annotate(
    no_reports=~Exists(Reports.objects.filter(user__eq=OuterRef('pk')))
).filter(
    email__startswith='a',
    no_reports=True
)
notorious

Django verifica o OnetoOne vazio

>>> try:
>>>     restaurant = p2.restaurant
>>> except Restaurant.DoesNotExist:
>>>     print "Place has no restaurant!"
>>> else:
>>>     # Do something with p2's restaurant here.
notorious

Respostas semelhantes a “O filtro django existe onetoone vazio”

Perguntas semelhantes a “O filtro django existe onetoone vazio”

Mais respostas relacionadas para “O filtro django existe onetoone vazio” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código