6 references to FormatProvider
System.Data.Common (6)
System\Data\Common\DataStorage.cs (1)
167
return _table.
FormatProvider
;
System\Data\DataColumn.cs (1)
412
((null != _table) ? _table.
FormatProvider
: CultureInfo.CurrentCulture);
System\Data\Filter\DataExpression.cs (1)
144
result = SqlConvert.ChangeType2(result, _storageType, _dataType!, _table!.
FormatProvider
);
System\Data\Filter\ExpressionNode.cs (1)
23
return ((null != _table) ? _table.
FormatProvider
: System.Globalization.CultureInfo.CurrentCulture);
System\Data\Select.cs (2)
666
vRight = Convert.ToChar(vRight, _table.
FormatProvider
);
668
vRight = SqlConvert.ChangeType2(vRight, StorageType.Char, typeof(char), _table.
FormatProvider
);