I want to simply combine two querysets from different models into one queryset (and not a list as shown in other stackoverflow questions!). For example, here are two querysets:
a = Modelone.objects.all()
b = Modeltwo.objects.filter(number__gte=4)
Then, I want a queryset c
that combines both a
and b
. Thank you, and please leave me any questions you have.