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

EFObjectSpace.FindObject(Type, CriteriaOperator, Boolean) Method

Searches for the first object which matches the specified criteria.

Namespace: DevExpress.ExpressApp.EF

Assembly: DevExpress.ExpressApp.EF.v18.2.dll

Declaration

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

Parameters

Name Type Description
type Type

A Type object which is the type of objects to search for.

criteria CriteriaOperator

A DevExpress.Data.Filtering.CriteriaOperator descendant which is the criteria for matching persistent objects.

inTransaction Boolean

A boolean value. It is not used during the search.

Returns

Type Description
Object

An object which is the first persistent object which matches the specified criteria. null (Nothing in Visual Basic) if there is no persistent object which matches the criteria.

See Also