hi guys,
havent tried out the debugging yet, however my team get to a workaround, which might be helpful to some here.
What we do is to use the combination of FieldComparePredicate and the AddWithOr method, instead of using FieldCompareRangePredicate
What we did is:
IPredicateExpression Filter = new PredicateExpression();
foreach(string s in searchkeys)
{
// create the compare predicate
FieldComparePredicate cmpPredicate = new FieldComparePredicate
(BookFields.Name, ComparisonOperator.Equal, s.ToUpper());
Filter.AddWithOr(cmpPredicate);
}
So far we had tried out with more than 100 searchkeys, and it has not hit any of the
performance so far. Anyone using this would like to share?
Thanks