Skip to main content
.NET 6.0+

BaseObjectSpace.IsObjectFitForCriteria(Type, Object, CriteriaOperator) Method

Specifies whether a particular object satisfies the specified criteria.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public virtual 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.

Note

The type of the object passed as the obj parameter need not match the type passed as the objectType parameter. But the type passed as the objectType parameter must be assignable from the type of the object passed as the obj parameter.

See Also