Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IObjectSpace.GetObjects Method

Name Parameters Description
GetObjects(Type, CriteriaOperator, Boolean) type, criteria, inTransaction Returns an IList collection of objects of the specified type, retrieved to the current Object Space and filtered according to the specified criteria.
GetObjects(Type, CriteriaOperator, IList<SortProperty>, Boolean) type, criteria, sorting, inTransaction Returns a sorted IList collection of objects of the specified type, retrieved to the current Object Space and filtered according to the specified criteria.
GetObjects(Type, CriteriaOperator) type, criteria Returns an IList collection of objects of the specified type, retrieved to the current Object Space and filtered according to the specified criteria.
GetObjects(Type) type Retrieves objects of the specified type from the current Object Space. Returns an IList collection.
GetObjects<T>() none Retrieves objects of the specified type from the current Object Space. Returns an IList collection.
GetObjects<T>(CriteriaOperator, Boolean) criteria, inTransaction Returns an IList collection of objects via the current Object Space.
GetObjects<T>(CriteriaOperator, IList<SortProperty>, Boolean) criteria, sorting, inTransaction Returns a sorted IList collection of objects of the specified type, retrieved to the current Object Space and filtered according to the specified criteria.
GetObjects<T>(CriteriaOperator) criteria Returns an IList collection of objects of the specified type, retrieved to the current Object Space and filtered according to the specified criteria.