| MemoryQueryPersistenceServiceGetQueryResults Method |
Retrieves the result keys located between offset and offset+count in the stateful query provider
Namespace:
SanteDB.Caching.Memory
Assembly:
SanteDB.Caching.Memory (in SanteDB.Caching.Memory.dll) Version: 3.0.481-alpha
Syntax public IEnumerable<Guid> GetQueryResults(
Guid queryId,
int startRecord,
int nRecords
)
Public Function GetQueryResults (
queryId As Guid,
startRecord As Integer,
nRecords As Integer
) As IEnumerable(Of Guid)
public:
virtual IEnumerable<Guid>^ GetQueryResults(
Guid queryId,
int startRecord,
int nRecords
) sealed
abstract GetQueryResults :
queryId : Guid *
startRecord : int *
nRecords : int -> IEnumerable<Guid>
override GetQueryResults :
queryId : Guid *
startRecord : int *
nRecords : int -> IEnumerable<Guid>
Parameters
- queryId
- Type: SystemGuid
The identifier of the stateful query from which results should be retrieved - startRecord
- Type: SystemInt32
[Missing <param name="startRecord"/> documentation for "M:SanteDB.Caching.Memory.MemoryQueryPersistenceService.GetQueryResults(System.Guid,System.Int32,System.Int32)"]
- nRecords
- Type: SystemInt32
[Missing <param name="nRecords"/> documentation for "M:SanteDB.Caching.Memory.MemoryQueryPersistenceService.GetQueryResults(System.Guid,System.Int32,System.Int32)"]
Return Value
Type:
IEnumerableGuidThe UUIDs of the records which originally matched the query represented by
queryIdImplements
IQueryPersistenceServiceGetQueryResults(Guid, Int32, Int32)See Also