can anyone give me a nudge in the right direction as to how to do an "OR" query via the Query Service?
In order to do an "AND" query I can simply add two (or more) "Ranges" - this sort of jazz:
// build and add our new filter
QueryDataRangeMetadata range = new QueryDataRangeMetadata
{
TableName = dataSource.Table,
FieldName = fieldName,
Value = fieldValue,
Enabled = true
};
dataSource.Ranges[ranges.Length - 1] = range;
..but how does one do an "OR" ??