Open onyb opened 7 years ago
This is supported: Foo.objects.filter().order_by('-foo')
Foo.objects.filter().order_by('-foo')
whereas, this is not: Foo.objects.filter().values('email', 'foo').order_by('-foo')
Foo.objects.filter().values('email', 'foo').order_by('-foo')
This is supported:
Foo.objects.filter().order_by('-foo')
whereas, this is not:
Foo.objects.filter().values('email', 'foo').order_by('-foo')