Skip to main content
All docs
V25.2
  • EFCoreObjectSpace.FindObject(Type, CriteriaOperator, Boolean) Method

    Searches for the first object that matches the specified criteria.

    Namespace: DevExpress.ExpressApp.EFCore

    Assembly: DevExpress.ExpressApp.EFCore.v25.2.dll

    NuGet Package: DevExpress.ExpressApp.EFCore

    Declaration

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

    Parameters

    Name Type Description
    objectType Type

    A type of an object to be returned.

    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 if there is no persistent object that matches the criteria.

    Remarks

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

    See Also