3 implementations of DbType
System.Data.Common (1)
System\Data\Common\DbParameter.cs (1)
16
public abstract DbType
DbType
{ get; set; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameter.cs (1)
149
public override System.Data.DbType
DbType
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
353
public override System.Data.DbType
DbType
{ get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
1 reference to DbType
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
775
Debug.Assert(DbType.Int32 == parameter.
DbType
, "unexpected DbType");