3 implementations of DeleteCommand
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
67IDbCommand? IDbDataAdapter.DeleteCommand
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataAdapter.cs (1)
52IDbCommand? IDbDataAdapter.DeleteCommand
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
169System.Data.IDbCommand? System.Data.IDbDataAdapter.DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
3 writes to DeleteCommand
System.Data.Common (3)
System\Data\Common\DbDataAdapter.cs (3)
63_IDbDataAdapter.DeleteCommand = value; 249_IDbDataAdapter.DeleteCommand = CloneCommand(pfrom.DeleteCommand); 276pthis.DeleteCommand = null;
4 references to DeleteCommand
System.Data.Common (4)
System\Data\Common\DbDataAdapter.cs (4)
59return (DbCommand?)(_IDbDataAdapter.DeleteCommand); 249_IDbDataAdapter.DeleteCommand = CloneCommand(pfrom.DeleteCommand); 1031dataCommand = _IDbDataAdapter.DeleteCommand; 1753command = adapter._IDbDataAdapter.DeleteCommand;