Click or drag to resize

RedisQueryPersistenceServiceGetQueryResults Method

Retrieves the result keys located between offset and offset+count in the stateful query provider

Namespace:  SanteDB.Caching.Redis
Assembly:  SanteDB.Caching.Redis (in SanteDB.Caching.Redis.dll) Version: 3.0.481-alpha
Syntax
public IEnumerable<Guid> GetQueryResults(
	Guid queryId,
	int offset,
	int count
)

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: IEnumerableGuid
The UUIDs of the records which originally matched the query represented by queryId

Implements

IQueryPersistenceServiceGetQueryResults(Guid, Int32, Int32)
See Also