 | OrmQueryResultSetTResultTake Method |
Take only count results
Namespace: SanteDB.OrmLiteAssembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntaxpublic IQueryResultSet<TResult> Take(
int count
)
Public Function Take (
count As Integer
) As IQueryResultSet(Of TResult)
public:
virtual IQueryResultSet<TResult>^ Take(
int count
) sealed
abstract Take :
count : int -> IQueryResultSet<'TResult>
override Take :
count : int -> IQueryResultSet<'TResult> 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)
RemarksThis 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