Skip to main content
All docs
V25.1
  • .NET 8.0+
    • The page you are viewing does not exist in the .NET Framework 4.6.2+ platform documentation. This link will take you to the parent topic of the current section.

    EFCoreObjectSpace.GetObjectsQuery<T>(Boolean) Method

    Gets a queryable data structure that provides functionality to evaluate queries against the specified business object type.

    Namespace: DevExpress.ExpressApp.EFCore

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

    NuGet Package: DevExpress.ExpressApp.EFCore

    Declaration

    public override IQueryable<T> GetObjectsQuery<T>(
        bool inTransaction = false
    )

    Optional Parameters

    Name Type Default Description
    inTransaction Boolean False

    This parameter does not affect the result in EFCoreObjectSpace. It is added to provide compatibility with IObjectSpace.GetObjectsQuery<T>.

    Type Parameters

    Name Description
    T

    A business object type for that this method returns the queryable data structure.

    Returns

    Type Description
    IQueryable<T>

    An IQueryable<T> object that provides functionality to evaluate queries against a specific business object type.

    See Also