| IBiDataSourceExecuteView Method |
Executes the specified view returning the context
Namespace:
SanteDB.BI.Services
Assembly:
SanteDB.BI (in SanteDB.BI.dll) Version: 3.0.481-alpha
Syntax BisResultContext ExecuteView(
BiViewDefinition viewDef,
IDictionary<string, Object> parameters,
int offset,
int? count
)
Function ExecuteView (
viewDef As BiViewDefinition,
parameters As IDictionary(Of String, Object),
offset As Integer,
count As Integer?
) As BisResultContext
BisResultContext^ ExecuteView(
BiViewDefinition^ viewDef,
IDictionary<String^, Object^>^ parameters,
int offset,
Nullable<int> count
)
abstract ExecuteView :
viewDef : BiViewDefinition *
parameters : IDictionary<string, Object> *
offset : int *
count : Nullable<int> -> BisResultContext
Parameters
- viewDef
- Type: SanteDB.BI.ModelBiViewDefinition
The view (query or view) definition to execute - parameters
- Type: System.Collections.GenericIDictionaryString, Object
The parameters to pass to the query - offset
- Type: SystemInt32
The offset of the first result to return in the result context - count
- Type: SystemNullableInt32
The number of results to retrieve
Return Value
Type:
BisResultContextThe constructed result context
See Also