Returns a portion of the query results (sliced)

Namespace: Castle.ActiveRecord
Assembly:  Castle.ActiveRecord (in Castle.ActiveRecord.dll)
Version: 1.0.3.0

Syntax

C#
public static T[] SlicedFindAll(
	int firstResult,
	int maxResults,
	params ICriterion[] criteria
)

Parameters

firstResult
Int32
The number of the first row to retrieve.
maxResults
Int32
The maximum number of results retrieved.
criteria
array<ICriterion>[]()
The criteria expression

Return Value

The sliced query results.

See Also