Skip to main content
.NET 6.0+

Session.GetObjects(XPClassInfo, CriteriaOperator, SortingCollection, Int32, Boolean, Boolean) Method

Gets a collection of persistent objects that match the specified criteria.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public ICollection GetObjects(
    XPClassInfo classInfo,
    CriteriaOperator criteria,
    SortingCollection sorting,
    int topSelectedRecords,
    bool selectDeleted,
    bool force
)

Parameters

Name Type Description
classInfo XPClassInfo

An XPClassInfo object that provides metadata information on the persistent objects to be returned.

criteria CriteriaOperator

A CriteriaOperator descendant which represents the search criteria.

sorting SortingCollection

A SortingCollection object which represents a collection of SortProperty objects.

topSelectedRecords Int32

An integer value which specifies the maximum number of returned objects.

selectDeleted Boolean

true to include the persistent objects marked as deleted into the collection; otherwise, false.

force Boolean

true to reload the objects from a data store; otherwise, false.

Returns

Type Description
ICollection

A collection of persistent objects that match the specified criteria.

Remarks

This member supports the internal infrastructure and is not intended to be used directly from your code. To get objects from a session, use the XPCollection and XPView components or the XPQuery<T>.

See Also