1 instantiation of BigIntegerStorage
System.Data.Common (1)
System\Data\Common\DataStorage.cs (1)
333case StorageType.BigInteger: return new BigIntegerStorage(column);
7 references to BigIntegerStorage
System.Data.Common (7)
System\Data\Common\SQLConvert.cs (2)
353return BigIntegerStorage.ConvertToBigInteger(value, formatProvider); 357return BigIntegerStorage.ConvertFromBigInteger((System.Numerics.BigInteger)value, type, formatProvider);
System\Data\DataColumn.cs (4)
262if ((BigInteger)AutoIncrementSeed != BigIntegerStorage.ConvertToBigInteger(value, FormatProvider)) 513_defaultValue = BigIntegerStorage.ConvertFromBigInteger((BigInteger)_defaultValue, value, FormatProvider); 517_defaultValue = BigIntegerStorage.ConvertToBigInteger(_defaultValue, FormatProvider); 2035_current = BigIntegerStorage.ConvertToBigInteger(value, formatProvider);
System\Data\xmlsaver.cs (1)
89v = (string)BigIntegerStorage.ConvertFromBigInteger((System.Numerics.BigInteger)entry.Value, typeof(string), CultureInfo.InvariantCulture);