Is there a way to use OR operator for conditions in queries. I know that the modifier [QueryDbField(Term=QueryTerm.Or)]
can be used but this will change the behavior of the property always. Maybe some times I need to query with AND and some times I need to query with OR, with the same field.
Something like
state = la AND amount = 1000 OR totalamount=1000
become
{url}?state=la&amount=1000&ORtotalamount=1000