OlapDataProviderReplaceParameterPlaceholders Method |
Replaces the parameter placeholder.
Namespace:
Dundas.BI.Data.DataProviders.Olap
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax protected abstract string ReplaceParameterPlaceholders(
string queryStatement,
Dictionary<string, ParameterValue> actualValues,
ICollection<DataParameterValue> parameterCollection
)
Protected MustOverride Function ReplaceParameterPlaceholders (
queryStatement As String,
actualValues As Dictionary(Of String, ParameterValue),
parameterCollection As ICollection(Of DataParameterValue)
) As String
protected:
virtual String^ ReplaceParameterPlaceholders(
String^ queryStatement,
Dictionary<String^, ParameterValue^>^ actualValues,
ICollection<DataParameterValue^>^ parameterCollection
) abstract
abstract ReplaceParameterPlaceholders :
queryStatement : string *
actualValues : Dictionary<string, ParameterValue> *
parameterCollection : ICollection<DataParameterValue> -> string
Parameters
- queryStatement
- Type: SystemString
The query statement. - actualValues
- Type: System.Collections.GenericDictionaryString, ParameterValue
The actual values. - parameterCollection
- Type: System.Collections.GenericICollectionDataParameterValue
The parameter collection.
Return Value
Type:
String
A reference to a
String what contains updated query statement.
See Also