Is there a wildcard character in Django to use in an Objects.filter?
For example, is there a character that is the equivalent of doing this:
Prices.objects.filter(a = example1,
b = example2,
#c=example3)
i.e. instead of commenting out c, could I not put c = WILDCARD or c = *... you get the jist. Thank you.
EDIT: As in, if you've got a big list of attributes that can be searched for and you only want to search a select few, you aren't exactly going to have loads of functions that doing those specific searches. I need some kind of character that tells Django and then to SQL "this field doesnt matter, i want everything here"... not including the field (like in the example) just creates a shedload of functions.