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