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#
protected internal static Array SlicedFindAll(
	Type targetType,
	int firstResult,
	int maxResults,
	Order[] orders,
	DetachedCriteria criteria
)

Parameters

targetType
Type
The target type.
firstResult
Int32
The number of the first row to retrieve.
maxResults
Int32
The maximum number of results retrieved.
orders
array<Order>[]()
An Array of Order objects.
criteria
DetachedCriteria
The criteria expression

Return Value

The sliced query results.

See Also