 | MemoryQueryPersistenceServiceGetQueryResults Method |
Retrieves the result keys located between offset and offset+count in the stateful query provider
Namespace: SanteDB.Caching.MemoryAssembly: SanteDB.Caching.Memory (in SanteDB.Caching.Memory.dll) Version: 3.0.2081-alpha+73f4bcede15fc876f30607896483d7d817ecc787
Syntaxpublic 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 Guid
- The identifier of the stateful query from which results should be retrieved
- startRecord Int32
[Missing <param name="startRecord"/> documentation for "M:SanteDB.Caching.Memory.MemoryQueryPersistenceService.GetQueryResults(System.Guid,System.Int32,System.Int32)"]
- nRecords Int32
[Missing <param name="nRecords"/> documentation for "M:SanteDB.Caching.Memory.MemoryQueryPersistenceService.GetQueryResults(System.Guid,System.Int32,System.Int32)"]
Return Value
IEnumerableGuidThe UUIDs of the records which originally matched the query represented by
queryIdImplements
IQueryPersistenceServiceGetQueryResults(Guid, Int32, Int32)
See Also