Npgsql.NpgsqlCommandBuilder.GetParameterPlaceholder C# (CSharp) Method

GetParameterPlaceholder() protected method

Returns the placeholder for the parameter in the associated SQL statement.
protected GetParameterPlaceholder ( int parameterOrdinal ) : string
parameterOrdinal int The number to be included as part of the parameter's name.
return string
        protected override string GetParameterPlaceholder(int parameterOrdinal)
        {
            return GetParameterName(parameterOrdinal);
        }