Hi all,

I would like to fetch the latest entries for each user from a model
like:

class Entry(models.Model):
    user = models.ForeignKey(User)
    entry = models.TextField()
    date = models.DateTimeField(auto_now_add=True)

Is it possible with the current API with a single query?

I.e., wouldn't it be great to have something like:

Entry.objects.annotate(Max('added'), group_by=['user']).filter
(date=date__max)


Thanks,
oMat

--~--~---------~--~----~------------~-------~--~----~
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