 | RedisQueryPersistenceServiceGetQueryResults Method |
Retrieves the result keys located between offset and offset+count in the stateful query provider
Namespace: SanteDB.Caching.RedisAssembly: SanteDB.Caching.Redis (in SanteDB.Caching.Redis.dll) Version: 3.0.2081-alpha+ce906ccc8091ff0a3c40d1fff3e2485e75a86c5b
Syntaxpublic IEnumerable<Guid> GetQueryResults(
Guid queryId,
int offset,
int count
)
Public Function GetQueryResults (
queryId As Guid,
offset As Integer,
count As Integer
) As IEnumerable(Of Guid)
public:
virtual IEnumerable<Guid>^ GetQueryResults(
Guid queryId,
int offset,
int count
) sealed
abstract GetQueryResults :
queryId : Guid *
offset : int *
count : int -> IEnumerable<Guid>
override GetQueryResults :
queryId : Guid *
offset : int *
count : int -> IEnumerable<Guid> 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
IEnumerableGuidThe UUIDs of the records which originally matched the query represented by
queryIdImplements
IQueryPersistenceServiceGetQueryResults(Guid, Int32, Int32)
See Also