Click or drag to resize

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.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntax
IEnumerable<Guid> GetQueryResults(
	Guid queryId,
	int offset,
	int count
)

Parameters

queryId  Guid
The identifier of the stateful query from which results should be retrieved
offset  Int32
The offset in the stateful query result set where the first returned value should be.
count  Int32
The number of records to read from the stateful query result set

Return Value

IEnumerableGuid
The UUIDs of the records which originally matched the query represented by queryId
See Also