Theres still a problem with this :( Request.objects.filter(parameters=1, parameters=2) is not the same as Request.objects.filter(parameters=2, parameters=1)
However the following two queries seem to be working as expected now (i'm pretty sure they didnt work when I tried it the last time - or I had a typo or something): models.Request.objects.filter(parameters=1).filter(parameters=2) models.Request.objects.filter(parameters=2).filter(parameters=1) The Q&Q thingie still doesnt work though, not sure if this i a bug or me misunderstanding something. chris --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---