Hello guys, the question would, how to create DOES NOT CONTAIN string condition using llblgen Filter predicates?
i found how to create CONTAINS
return new FieldFullTextSearchPredicate(filterField, FullTextSearchOperator.Contains, filter.Condition.ConditionValue);
AND
return new FieldLikePredicate(filterField, null, "%" + filter.Condition.ConditionValue + "%");
by the way which one is faster from methods listed above? FieldFullTextSearchPredicate this one?
was not able to find any DOES NOT CONTAIN in documentation or i just dont understand something.
any help? thank you!