6 references to FormatProvider
System.Data (6)
fx\src\data\System\Data\Common\DataStorage.cs (1)
164return Table.FormatProvider;
fx\src\data\System\Data\DataColumn.cs (1)
443return ((null != table) ? table.FormatProvider : CultureInfo.CurrentCulture);
fx\src\data\System\Data\Filter\DataExpression.cs (1)
119result = SqlConvert.ChangeType2(result, _storageType, _dataType, table.FormatProvider);
fx\src\data\System\Data\Filter\ExpressionNode.cs (1)
25return ((null != _table) ? _table.FormatProvider : System.Globalization.CultureInfo.CurrentCulture);
fx\src\data\System\Data\Select.cs (2)
557vRight = Convert.ToChar(vRight, table.FormatProvider); 559vRight = SqlConvert.ChangeType2(vRight, StorageType.Char, typeof(char), table.FormatProvider);