| TypedListBaseTFill Method (Int64, ISortExpression) | 
 Fills itself with data. it builds a dynamic query and loads itself with that query. Will not use a filter, will allow duplicate rows.
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntaxpublic bool Fill(
	long maxNumberOfItemsToReturn,
	ISortExpression sortClauses
)
Public Function Fill ( 
	maxNumberOfItemsToReturn As Long,
	sortClauses As ISortExpression
) As Boolean
Parameters
- maxNumberOfItemsToReturn
 - Type: SystemInt64
The maximum number of rows to return. specifying 0 means all rows are returned - sortClauses
 - Type: SD.LLBLGen.Pro.ORMSupportClassesISortExpression
The order by specifications for the sorting of the resultset. When null is specified, no sorting is applied. 
Return Value
Type: 
Booleantrue if fill succeeded, false otherwise
Implements
ITypedListLgpFill(Int64, ISortExpression)
See Also