Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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