tags:

views:

79

answers:

1

Hi,

given a standard model (called Image) with an autoset 'id', how do I get the max id?

So far I've tried:

max_id = Image.objects.all().aggregate(Max('id'))

but I get a 'id__max' Key error.

Trying

max_id = Image.objects.order_by('id')[0].id

gives a 'argument 2 to map() must support iteration' exception

Any help?

+3  A: 

Just order by reverse id, and take the top one.

Image.objects.all().order_by("-id")[0]
Daniel Roseman