CriteriaOperator.ParseList(String, Object[]) Method
Converts the specified string representation of expressions that are divided by a semicolon into their CriteriaOperator equivalents.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
public static CriteriaOperator[] ParseList(
string criteriaList,
params object[] parameters
)
Parameters
Name | Type | Description |
---|---|---|
criteriaList | String | A String value that represents the expressions to convert. The expressions are divided by a semicolon. |
parameters | Object[] | The values that are substituted into the expression in place of question mark characters. These parameters can be omitted. |
Returns
Type | Description |
---|---|
CriteriaOperator[] | An array of CriteriaOperator equivalents to the expressions contained in criteriaList. |
See Also