3 implementations of SourceColumn
System.Data.Common (1)
System\Data\Common\DbParameter.cs (1)
62public abstract string SourceColumn { get; set; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameterHelper.cs (1)
138public override string SourceColumn
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
368public 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)
758string columnName = parameter.SourceColumn; 791string columnName = parameter.SourceColumn;