GeneralUtilsCalculateRowSkipTake Method |
Calculates the row skip / take values from the 3 values from the pre-v4 api.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public static void CalculateRowSkipTake(
int pageNumber,
int pageSize,
int maxNumberOfItemsToReturn,
out int rowsToSkip,
out int rowsToTake
)
Public Shared Sub CalculateRowSkipTake (
pageNumber As Integer,
pageSize As Integer,
maxNumberOfItemsToReturn As Integer,
<OutAttribute> ByRef rowsToSkip As Integer,
<OutAttribute> ByRef rowsToTake As Integer
)
Parameters
- pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
Size of the page. - maxNumberOfItemsToReturn
- Type: SystemInt32
The max number of items to return. - rowsToSkip
- Type: SystemInt32
The rows to skip. - rowsToTake
- Type: SystemInt32
The rows to take.
See Also