3 overrides of DbConnection
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
342protected override DbConnection? DbConnection
System.Data.Odbc (1)
System\Data\Odbc\OdbcCommand.cs (1)
260protected override DbConnection? DbConnection
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
29protected override System.Data.Common.DbConnection? DbConnection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
2 writes to DbConnection
System.Data.Common (2)
System\Data\Common\DbCommand.cs (2)
34set { DbConnection = value; } 40set { DbConnection = (DbConnection?)value; }
2 references to DbConnection
System.Data.Common (2)
System\Data\Common\DbCommand.cs (2)
33get { return DbConnection; } 39get { return DbConnection; }