Hi all,

Sorry if this has been asked before, but I could not find help in the
search.

Here's my code:

class Code(models.Model):
    name = models.CharField(max_length=100)

class Quote(models.Model):
    content = models.CharField(max_length=100)
    codes = models.ManyToManyField(Code, null=True, blank=True)

I want to filter out a model by testing values in a list. If I use
"__in" it seems to do a OR filter:

quotes = Quote.objects.filter(codes__in = code_pk_list)

By OR filter I mean that it returns any quote that has a code in the
list...

Rather I'd like a AND filter, that is something that only returns the
objects that have at least ALL the values given in the list.

Do you know how to do this?

Many thanks,

Julien
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to