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

IObjectSpace.IsObjectFitForCriteria(Type, Object, CriteriaOperator) Method

Specifies whether a particular object satisfies the specified criteria.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

bool? IsObjectFitForCriteria(
    Type objectType,
    object obj,
    CriteriaOperator criteria
)

Parameters

Name Type Description
objectType Type

The type of the object to be tested.

obj Object

A persistent object to be tested.

criteria CriteriaOperator

A CriteriaOperator object representing a criteria to be tested.

Returns

Type Description
Nullable<Boolean>

true if the specified object passed as the obj parameter satisfies the criteria passed as the criteria parameter; otherwise, false.

Remarks

To learn how to specify a criteria correctly, refer to the Ways to Build Criteria, Criteria Operators, How to: Build Complex Criteria and How to: Build Simple Criteria topics in the XPO documentation.

When implementing the IObjectSpace interface in the BaseObjectSpace class’s descendant, you don’t have to implement the IsObjectFitForCriteria method. It’s implemented by the BaseObjectSpace class. In this method, the expression evaluator provided by the BaseObjectSpace.GetExpressionEvaluator method is used to check whether the specified object fits for the specified criteria. The type passed as the objectType parameter must be assignable from the type of the object passed as the obj parameter.

See Also