Initializes a new instance of the NpgsqlParameter class.
Initializes a new instance of the NpgsqlParameter class.
public NpgsqlParameter();
Initializes a new instance of the NpgsqlParameter class with the parameter name and the data type.
public NpgsqlParameter(string,NpgsqlDbType);
Initializes a new instance of the NpgsqlParameter class with the parameter name, the DbType, and the size.
public NpgsqlParameter(string,NpgsqlDbType,int);
Initializes a new instance of the NpgsqlParameter class with the parameter name, the DbType, the size, and the source column name.
public NpgsqlParameter(string,NpgsqlDbType,int,string);
Initializes a new instance of the NpgsqlParameter class with the parameter name, the DbType, the size, the source column name, a ParameterDirection, the precision of the parameter, the scale of the parameter, a DataRowVersion to use, and the value of the parameter.
public NpgsqlParameter(string,NpgsqlDbType,int,string,ParameterDirection,bool,byte,byte,DataRowVersion,object);
Missing <summary> documentation for M:Npgsql.NpgsqlParameter.#ctor(System.String,System.Data.DbType)
public NpgsqlParameter(string,DbType);
Missing <summary> documentation for M:Npgsql.NpgsqlParameter.#ctor(System.String,System.Data.DbType,System.Int32)
public NpgsqlParameter(string,DbType,int);
Missing <summary> documentation for M:Npgsql.NpgsqlParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String)
public NpgsqlParameter(string,DbType,int,string);
Missing <summary> documentation for M:Npgsql.NpgsqlParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.Data.DataRowVersion,System.Object)
public NpgsqlParameter(string,DbType,int,string,ParameterDirection,bool,byte,byte,DataRowVersion,object);
Initializes a new instance of the NpgsqlParameter class with the parameter name and a value of the new NpgsqlParameter.
public NpgsqlParameter(string,object);