Implemented interface member:
method
GetDouble
System.Data.IDataRecord.GetDouble(System.Int32)
3 overrides of GetDouble
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
495
public override double
GetDouble
(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
890
public override double
GetDouble
(int i)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
210
public override double
GetDouble
(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
4 references to GetDouble
Microsoft.ML.Data (3)
DataLoadSave\Database\DatabaseLoaderCursor.cs (3)
316
return (ref double value) => value = DataReader.IsDBNull(columnIndex) ? double.NaN : DataReader.
GetDouble
(columnIndex);
479
editor.Values[i] = DataReader.IsDBNull(columnIndex) ? double.NaN : DataReader.
GetDouble
(columnIndex);
485
editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? double.NaN : DataReader.
GetDouble
(columnIndex);
System.Data.Common (1)
System\Data\DataReaderExtensions.cs (1)
82
return reader.
GetDouble
(reader.GetOrdinal(name));