Skip to content

Instantly share code, notes, and snippets.

@j00bar
Created September 3, 2014 16:40
Show Gist options
  • Save j00bar/ffcd7603f036e22d1622 to your computer and use it in GitHub Desktop.
Save j00bar/ffcd7603f036e22d1622 to your computer and use it in GitHub Desktop.
# N+1 queries
for photoset_obj in PhotoSet.objects.filter(owner=request.user):
latest_photo_obj = photoset_obj.photo_set.all().order_by('-created')[0]
yield photoset_obj, latest_photo_obj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment