Hi all,

looking at the example models Author and Entry at https://docs.djangoproject.com/en/1.3/topics/db/queries/, I would like to run a query like this:

        SetOfAuthors = Authors.objects.filter(...)
        qs = Entry.objects.filter(authors__in=SetOfAuthors)

such that (pseudo-code):

        for e in qs:
                "e.authors is a subset of (or equal to) SetOfAuthors"

However, when I try it, the true result seems to be an intersection:

        for e in qs:
"There is (at least one) an author in e.authors that is also in SetOfAuthors"


How do I have to phrase the query in order to obtain only entries whose authors are all in SetOfAuthors?

Best regards,
Carsten



--
   Cafu - the open-source Game and Graphics Engine
for multiplayer, cross-platform, real-time 3D Action
          Learn more at http://www.cafu.de

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