Re: Model query whit n OR

2011-05-13 Thread Fabian Ezequiel Gallina
2011/5/13 Martin Quinta : > i need a serch in db  users > (users have  city, age,sex.. etc) > > but i need serch users from many citys. > > somthing like this... >  from django.db.models import Q > (http://docs.djangoproject.com/en/dev/topics/db/queries/#complex- > lookups-with-q-objects) > users.o

Model query whit n OR

2011-05-13 Thread Martin Quinta
i need a serch in db users (users have city, age,sex.. etc) but i need serch users from many citys. somthing like this... from django.db.models import Q (http://docs.djangoproject.com/en/dev/topics/db/queries/#complex- lookups-with-q-objects) users.objects.get(Q(city='') | Q(city=''),