Skip to main content
.NET 6.0+

FetchObjectsEventArgs(Type, CriteriaOperator, IList<SortProperty>, Int32, Boolean) Constructor

Initializes a new instance of the FetchObjectsEventArgs class with specified settings.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public FetchObjectsEventArgs(
    Type objectType,
    CriteriaOperator criteria,
    IList<SortProperty> sorting,
    int topReturnedObjects,
    bool inTransaction
)

Parameters

Name Type Description
objectType Type

A type of objects in the collection.

criteria CriteriaOperator

The filter criteria to be applied to the collection.

sorting IList<SortProperty>

A list of SortProperty objects that specify the sort order for the collection.

topReturnedObjects Int32

The maximum number of objects that can be retrieved from the collection.

inTransaction Boolean

true if the specified criteria and sorting parameters are applied to all objects (in the database and retrieved); otherwise, false.

See Also