The idea that if I want to do either:
People.objects.short().blonde() People.objects.blonde().short()
... I need to implement short() and blonde() on Manager and QuerySet classes for the model. Creating chained query filters like this ought to be easier, and encouraged IMHO.
The idea that if I want to do either:
People.objects.short().blonde() People.objects.blonde().short()
... I need to implement short() and blonde() on Manager and QuerySet classes for the model. Creating chained query filters like this ought to be easier, and encouraged IMHO.