Opened 14 years ago

Closed 14 years ago

Last modified 11 years ago

#12222 closed (duplicate)

rename items in values() — at Version 4

Reported by: anonymous Owned by: nobody
Component: Database layer (models, ORM) Version: 1.1
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Luke Plant)

I wish there were a way to do instead of this:

MyModel.objects.values('otherfield__anotherjoinedfield__blah__derp__foo__doop')
{'otherfield__anotherjoinedfield__blah__derp__foo__doop': 4, 'otherfield__anotherjoinedfield__blah__derp__foo__doop': 5, [...]

you could do this:

MyModel.objects.values(val='otherfield__anotherjoinedfield__blah__derp__foo__doop')
{'val': 4, 'val': 5, [...]

Change History (4)

comment:1 by Russell Keith-Magee, 14 years ago

Resolution: invalid
Status: newclosed
  1. Please use preview.
  2. I think you're looking for !__in.

comment:2 by anonymous, 14 years ago

Sorry I didn't realize it would change the formatting. I'd fix it if I could but I can't figure out how to edit it.

"__in" has nothing to do with what the ticket was about. You know how you can rename an annotation by doing .annotate(name=Sum('field'))? Well that functionality should exist for values() as well.

comment:3 by Karen Tracey, 14 years ago

Description: modified (diff)

comment:4 by Luke Plant, 14 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top