DataProviderNamedParameterFormat Property |
Gets the named parameter format.
Namespace:
Dundas.BI.Data.DataProviders
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public abstract string NamedParameterFormat { get; }
Public MustOverride ReadOnly Property NamedParameterFormat As String
Get
public:
virtual property String^ NamedParameterFormat {
String^ get () abstract;
}
abstract NamedParameterFormat : string with get
Property Value
Type:
StringThe named parameter format.
Remarks
Used for query generation.
If the provider does not support named parameters this property should return '?'.
In this case positional parameters will be used.
The {0} in the format will be replaced by the parameter name.
See Also