LLBLGen wrote:
Is there a way to ignore the case when using FindMatches ?
for example if i want to find all the collection that has the state code of "TX" or "tx".
Yes:
PredicateExpression filter = new PredicateExpression();
FieldCompareValuePredicate filterName = new FieldCompareValuePredicate(ParticipantFields.Name, ComparisonOperator.Equal, name);
filterName.CaseSensitiveCollation = false;
filter.Add(filterName);
Only FieldCompareValuePredicate and FieldLikePredicate support this flag, unfortunately.