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