Click or drag to resize

EntityCollectionBase<TEntity>.IEntityCollection.GetMulti Method (IPredicate, Int64, ISortExpression)

Retrieves in this Collection object all Entity objects which match with the specified filter, formulated in the predicate or predicate expression definition.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntax
bool IEntityCollection.GetMulti(
	IPredicate selectFilter,
	long maxNumberOfItemsToReturn,
	ISortExpression sortClauses
)

Parameters

selectFilter
Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicate
A predicate or predicate expression which should be used as filter for the entities to retrieve. When set to null all entities will be retrieved (no filtering is being performed)
maxNumberOfItemsToReturn
Type: System.Int64
The maximum number of items to return with this retrieval query.
sortClauses
Type: SD.LLBLGen.Pro.ORMSupportClasses.ISortExpression
The order by specifications for the sorting of the resultset. When not specified, no sorting is applied.

Return Value

Type: Boolean
true if succeeded, false otherwise

Implements

IEntityCollection.GetMulti(IPredicate, Int64, ISortExpression)
See Also