Skip to main content

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.Core.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

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