Howdy all,

I'm know you can create a list of dictionaries for a queryset using
values(). However, I'm wondering if you can create one dictionary
where the keys are the primary keys of the result.

For example:

class Car(models.Model):
    vin = models.IntegerField()

>>Model.objects.all().values()
[{'id' : 1, 'vin' : 189554}, {'id' : 1, 'vin' : 189555}, ...]

Is there a built in way to get:
>>Model.objects.all().something_pk_values()
{1 : {'vin':189554}, 2 : {'vin':189555}}

Thanks!

Daniel

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to