On May 26, 2006, at 10:34 AM, Doug Van Horn wrote: > Are there plans to provide & and | operators > on QuerySet objects? It seems like that'd be a pretty big > undertaking, > but pretty frickin sweet if done well
/me steps out of time machine... See http://www.djangoproject.com/documentation/db_api/#complex- lookups-with-q-objects In your personal case:: qs = name_startswith | name_contains if len(input) >= 5: qs = qs | description_startswith | description_contains return qs[start:start+pagesize+1] This code does *one* query only. Jacob --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---