| IBiDataSourceExecuteQuery Method (String, IDictionaryString, Object, BiAggregationDefinition, Int32, NullableInt32) |
Executes the specified queryId using the specified parameters
Namespace:
SanteDB.BI.Services
Assembly:
SanteDB.BI (in SanteDB.BI.dll) Version: 3.0.481-alpha
Syntax BisResultContext ExecuteQuery(
string queryId,
IDictionary<string, Object> parameters,
BiAggregationDefinition[] aggregation,
int offset,
int? count
)
Function ExecuteQuery (
queryId As String,
parameters As IDictionary(Of String, Object),
aggregation As BiAggregationDefinition(),
offset As Integer,
count As Integer?
) As BisResultContext
BisResultContext^ ExecuteQuery(
String^ queryId,
IDictionary<String^, Object^>^ parameters,
array<BiAggregationDefinition^>^ aggregation,
int offset,
Nullable<int> count
)
abstract ExecuteQuery :
queryId : string *
parameters : IDictionary<string, Object> *
aggregation : BiAggregationDefinition[] *
offset : int *
count : Nullable<int> -> BisResultContext
Parameters
- queryId
- Type: SystemString
The ID of the query definition to execute - parameters
- Type: System.Collections.GenericIDictionaryString, Object
The parameter values to supply - aggregation
- Type: SanteDB.BI.ModelBiAggregationDefinition
The aggregation instructions to use - offset
- Type: SystemInt32
The offset of the first result - count
- Type: SystemNullableInt32
The maximum number of results to return
Return Value
Type:
BisResultContextA query result indicating the results of the query
See Also