Click or drag to resize

OrmQueryResultSetTResultSkip Method

Skip count results

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

Parameters

count  Int32

[Missing <param name="count"/> documentation for "M:SanteDB.OrmLite.OrmQueryResultSet`1.Skip(System.Int32)"]

Return Value

IQueryResultSetTResult

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

Implements

IQueryResultSetTDataSkip(Int32)
Remarks

This method skips count records in the result set by sending an offset command to the persistence technology. In SQL this equates to OFFSET count ROWS clause. In HTTP to Upstream, this sets the _offset=count query string variable.

See Also