> I was expecting to just be able to do:
> f = SomeClass.objects.filter(a=a, b=b, c=c)
>
> Is there some way to do this with the current code base?

I'm not sure of the exact syntax, but you can use a dictionary to
achieve this fairly easily. Something like
args = {}
if a == None:
    args['a__isnull'] = True
else:
    args['a'__exact] = a
...
SomeClass.objects.filter(**args)

 -rob


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