| IQueryPersistenceServiceGetQueryResults Method |
Retrieves the result keys located between offset and offset+count in the stateful query provider
Namespace:
SanteDB.Core.Services
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax IEnumerable<Guid> GetQueryResults(
Guid queryId,
int offset,
int count
)
Function GetQueryResults (
queryId As Guid,
offset As Integer,
count As Integer
) As IEnumerable(Of Guid)
IEnumerable<Guid>^ GetQueryResults(
Guid queryId,
int offset,
int count
)
abstract GetQueryResults :
queryId : Guid *
offset : int *
count : int -> IEnumerable<Guid>
Parameters
- queryId
- Type: SystemGuid
The identifier of the stateful query from which results should be retrieved - offset
- Type: SystemInt32
The offset in the stateful query result set where the first returned value should be. - count
- Type: SystemInt32
The number of records to read from the stateful query result set
Return Value
Type:
IEnumerableGuidThe UUIDs of the records which originally matched the query represented by
queryIdSee Also