Подсчет элементов в наборе запросов

#django #django-queryset #django-filter #django-filters Вопрос: Это работает RoomBookings.objects.filter(HotelName__HotelName__icontains=hotel.HotelName, RoomType__icontains= hotel.RoomType).count() Но это не работает queryset2 = RoomBookings.objects.filter(HotelName__HotelName__icontains=hotel.HotelName, RoomType__icontains= hotel.RoomType), print(queryset2.count()) И я тоже пытался print(queryset2.objects.count()) print (queryset2.objects.all().count()) print (queryset2.objects.all().len()) print…

Продолжить чтениеПодсчет элементов в наборе запросов