как конкатато выставить из моделей - PullRequest
0 голосов
/ 28 февраля 2019
the fields are in to Model it is reference code

from blog.models import Article
    from django.db.models import Value
    from django.db.models.functions import Concat

class Operations(ListView):
       def get_queryset(self,**kwards)
                a = Article.objects.all().annotate(
                    name_search=Concat(name_cliente, Value(" "), last_client))
                b = Article.Article.objects.all().annotate(name_search=Concat(name_user, Value(" "), last_user))

            queryset = queryset.filter(a & b) ##reference code

Я читаю документацию, но не понимаю, собрал логику для моего запроса. Буду признателен за объяснение

https://docs.djangoproject.com/en/2.1/topics/db/queries/#field-lookups-intro

...