Table of Contents

TCriteria.Skip Method

Sets the index of the first row to be returned by the query, skipping the preceding rows.

Remarks

Use together with Take to implement pagination.

Syntax

Unit: Aurelius.Criteria.Base

function TCriteria.Skip(AFirstRow: Integer): TCriteria;

Parameters

<-> Parameter Type Description
AFirstRow Integer The zero-based index of the first row to return.

Returns

The current criteria instance to allow method chaining.

See also