IFulltextQueryTDocumentLimit Method

Limits the results returned by this query.

Definition

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
C#
IFulltextQuery<TDocument> Limit(
	int skip,
	int take
)

Parameters

skip  Int32
The number of results to skip.
take  Int32
The maximum number of results to return.

Return Value

IFulltextQueryTDocument
The current instance.

Exceptions

ArgumentExceptionOccurs when skip is less than zero or take is less or equal to zero.

See Also