You ca use the | operator o querysets themselves. So qser | model.objects.filter(id__i=[1,2,3])
Alex On Jul 28, 2009 3:49 PM, "Margie" <margierogin...@yahoo.com> wrote: Is it possible to add to a queryset? Say I have a Book model and qset is an existing queryset of books. If I want to create a new queryset that contains everything in qset, plus books that have ids 1, 2, and 3, do I do this: Book.objects.filter(Q(id__in=[obj.id for obj in qset]) | Q(id__in= [1,2,3])) Is there some more efficient way to do this? Margie --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---