Hello,
I have to do an ExecuteMultiple, using a filter by the standard field "address1_postalcode".
The condition of the filter is that the postal code shoud be in a range.
I used this two filters, but the result does'nt take into account the condition:
filter.Conditions.Add(new ConditionExpression("address1_postalcode", ConditionOperator.LessThan, postalcodeMax));
filter.Conditions.Add(new ConditionExpression("address1_postalcode", ConditionOperator.GreaterThan, postalcodeMin));
PostalcodeMin and postalcodeMax are integers, and I know that postalCode field is string.
Do you have any idea?
Thanks
*This post is locked for comments
I have the same question (0)