I have found that, in some cases, the following also works (I have a similar model where using the slug of the related object does not work but using it's PK works):
tag_id = Tag.objects.get(tag = 'nopush').id x = Server.objects.exclude(tags__id__exact=tag_id) This may be because using the id saves one join. Normally your original QuerySet would require a join between three tables: tag, server, and the tag_server association table. When you use the tag's PK, the QuerySet does not need to join the tag table. If you are in DEBUG mode, you can also print out your SQL queries in your HTML page footer to see how Django is constructing the SQL for your QuerySet. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---