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