Skip to main content
.NET 6.0+

NonPersistentObjectSpace.FindObject(Type, CriteriaOperator, Boolean) Method

Searches for the first object that matches the specified criteria and of the specified type. This method takes uncommitted changes into account.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public override object FindObject(
    Type objectType,
    CriteriaOperator criteria,
    bool inTransaction
)

Parameters

Name Type Description
objectType Type

A type of objects this method searches.

criteria CriteriaOperator

Criteria to search for an object.

inTransaction Boolean

true if the method takes unsaved changes into account; otherwise, false.

Returns

Type Description
Object

The first object that matches the specified criteria. null (Nothing in Visual Basic) if there is no object that matches the criteria and belongs to the current Object Space.

Remarks

To learn how to use this method, refer to the IObjectSpace.FindObject(Type, CriteriaOperator, Boolean) method description.

See Also