ProviderExpressionGetQuery Method (String, ICollectionDataParameterValue, DictionaryString, String) | 
 
            Generates the query by substituting placeholders with generated parameter names.
            
 
    Namespace: 
   Dundas.BI.Data.DataProviders
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic string GetQuery(
	string namedParameterFormat,
	ICollection<DataParameterValue> parameters,
	Dictionary<string, string> placeholderToParameterName
)
Public Function GetQuery ( 
	namedParameterFormat As String,
	parameters As ICollection(Of DataParameterValue),
	placeholderToParameterName As Dictionary(Of String, String)
) As String
public:
String^ GetQuery(
	String^ namedParameterFormat, 
	ICollection<DataParameterValue^>^ parameters, 
	Dictionary<String^, String^>^ placeholderToParameterName
)
member GetQuery : 
        namedParameterFormat : string * 
        parameters : ICollection<DataParameterValue> * 
        placeholderToParameterName : Dictionary<string, string> -> string 
Parameters
- namedParameterFormat
 - Type: SystemString
The named parameter format. - parameters
 - Type: System.Collections.GenericICollectionDataParameterValue
The parameter values. - placeholderToParameterName
 - Type: System.Collections.GenericDictionaryString, String
Placeholder to parameter name mapping. 
Return Value
Type: 
StringThe query.
Exceptions
See Also