Hi,

I'd like to make a filter composed by ORing several Q objects, each of
which acts on a different model field.
For example I have a model with the fields "name", "title",
"description" and I want to make a Q object like the following:
Q_name = (Q(name__istartswith="hello") & Q(name__icontains="how are
you"))
Q_title = (Q(title__istartswith="hello") & Q(title__icontains="how are
you"))
Q_description = (Q(description__istartswith="hello") &
Q(description__icontains="how are you"))
Q_final = (Q_name | Q_title | Q_description)

Is it possible to avoid writing a Q object for each field and instead
simply generate it by passing the field (name, title and description)
as parameter? One way could be to generate the string and pass it to
eval() but I'd like to avoid that.

Any help would be appreciated.

Thanks
Francesco


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to