21 references to ValueType
System.Data.Common (21)
System\Data\DataRowComparer.cs (1)
209
if (value is
ValueType
vt)
System\Data\Filter\BinaryNode.cs (1)
129
return new ConstNode(table!,
ValueType
.Object, val, false);
System\Data\Filter\ConstNode.cs (11)
15
internal ConstNode(DataTable? table,
ValueType
type, object constant) : this(table, type, constant, true)
19
internal ConstNode(DataTable? table,
ValueType
type, object constant, bool fParseQuotes) : base(table)
23
case
ValueType
.Null:
27
case
ValueType
.Numeric:
30
case
ValueType
.Decimal:
33
case
ValueType
.Float:
37
case
ValueType
.Bool:
41
case
ValueType
.Str:
53
case
ValueType
.Date:
57
case
ValueType
.Object:
63
goto case
ValueType
.Object;
System\Data\Filter\ExpressionParser.cs (5)
283
node = new ConstNode(_table,
ValueType
.Numeric, str);
287
node = new ConstNode(_table,
ValueType
.Decimal, str);
291
node = new ConstNode(_table,
ValueType
.Float, str);
298
node = new ConstNode(_table,
ValueType
.Str, str);
305
node = new ConstNode(_table,
ValueType
.Date, str);
System\Data\Filter\FunctionNode.cs (2)
101
_arguments[1] = new ConstNode(table,
ValueType
.Str, type._name);
273
return new ConstNode(table,
ValueType
.Object, Eval(), false);
System\Data\Filter\UnaryNode.cs (1)
187
return new ConstNode(table,
ValueType
.Object, val, false);