Click or drag to resize

IFulltextQueryTDocumentLimit Method

Limits the results returned by this query.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.0.0
Syntax
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
ExceptionCondition
ArgumentExceptionOccurs when skip is less than zero or take is less or equal to zero.
See Also