On Tue, Jan 3, 2012 at 2:02 PM, Javier Guerra Giraldez
<jav...@guerrag.com> wrote:
> On Tue, Jan 3, 2012 at 11:54 AM, Carsten Fuchs <carsten.fu...@cafu.de> wrote:
>> How can I find only those blogs where *all* entries were (co-)authored by
>> 123?
>
> Blog.objects.exclude(entry__authors__ne=123)


oops.... there's no __ne!

try:

Blog.objects.exclude(entry__in=Entry.objects.exclude(authors=123))

-- 
Javier

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