Click or drag to resize

OrmQueryResultSetTResultTake Method

Take only count results

Namespace: SanteDB.OrmLite
Assembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntax
public IQueryResultSet<TResult> Take(
	int count
)

Parameters

count  Int32
The number of records to take from the result set

Return Value

IQueryResultSetTResult

[Missing <returns> documentation for "M:SanteDB.OrmLite.OrmQueryResultSet`1.Take(System.Int32)"]

Implements

IQueryResultSetTDataTake(Int32)
Remarks
This method results in a new query result set which has a FETCH FIRST count ROWS ONLY clause appended to it. In HTTP to upstream, this sets the _count=count query string variable.
See Also