3 implementations of SourceColumn
System.Data.Common (1)
System\Data\Common\DbParameter.cs (1)
62
public abstract string
SourceColumn
{ get; set; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameterHelper.cs (1)
138
public override string
SourceColumn
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
368
public override string
SourceColumn
{ get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
2 references to SourceColumn
System.Data.Common (2)
System\Data\Common\DbDataAdapter.cs (2)
758
string columnName = parameter.
SourceColumn
;
791
string columnName = parameter.
SourceColumn
;