XPBaseObject.Evaluate(CriteriaOperator) Method
In This Article
Evaluates the specified expression against the current instance of the persistent object.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public object Evaluate(
CriteriaOperator expression
)
#Parameters
Name | Type | Description |
---|---|---|
expression | Criteria |
A Criteria |
#Returns
Type | Description |
---|---|
Object | The evaluated value. |
#Remarks
This method allows you to evaluate a specific expression against the current instance of the persistent object. The expression is specified by a CriteriaOperator object. By using another overload of the Evaluate method an expression can be specified as a string.
See Also