I am trying to set a criteria in a ds.xml to use a list of values with operator of "inSet". How should I specify the value?
I tried above but it treats the value as a single String.
Code:
<binding operationType="fetch" operationId="xxx" serverMethod="xxx"> <criteria fieldName="type" value="1,2" operator="inSet" /> </binding>
Comment