[Answered ]-Django – Order of WHERE statements in filter

2👍

If you chain the filters it should work:

filter(user=self.user).filter(province=self.province).filter(city=self.city)

I tried it in django 1.2.5 and it’s working.

Leave a comment