Retrieves all lists.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
EntityCollection<ListEntity> GetListCollection(
	bool fullPrefetchPath,
	ISortExpression sorter,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetListCollection ( 
	fullPrefetchPath As Boolean,
	sorter As ISortExpression,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of ListEntity)
Visual C++
EntityCollection<ListEntity^>^ GetListCollection(
	bool fullPrefetchPath, 
	ISortExpression^ sorter, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetListCollection : 
        fullPrefetchPath : bool * 
        sorter : ISortExpression * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<ListEntity> 

Parameters

fullPrefetchPath
Type: System..::..Boolean
Full prefetch path
sorter
Type: ISortExpression
Sorter
pageNumber
Type: System..::..Int32
Page number
pageSize
Type: System..::..Int32
Page size
recordCount
Type: System..::..Int32%
Number of records retrieved

Return Value

Type: EntityCollection<(Of <(<'ListEntity>)>)>
Entity collection with all entities that satisfy the filter condition

See Also