2 overrides of BaseCommand
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
36protected override IDbCommand? BaseCommand
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
435protected override System.Data.IDbCommand? BaseCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
2 writes to BaseCommand
System.Data.Common (1)
System\Data\Common\RowUpdatingEventArgs.cs (1)
47set { BaseCommand = value; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
39set { base.BaseCommand = (value as OdbcCommand); }
2 references to BaseCommand
System.Data.Common (1)
System\Data\Common\RowUpdatingEventArgs.cs (1)
46get { return BaseCommand; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
38get { return base.BaseCommand; }