9 writes to val
System.Data (9)
fx\src\data\System\Data\Filter\ConstNode.cs (9)
26this.val = DBNull.Value; 30this.val = SmallestNumeric(constant); 33this.val = SmallestDecimal(constant); 36this.val = Convert.ToDouble(constant, NumberFormatInfo.InvariantInfo); 40this.val = Convert.ToBoolean(constant, CultureInfo.InvariantCulture); 46this.val = ((string)constant).Replace("''", "'"); 49this.val = (string)constant; 54this.val = DateTime.Parse((string)constant, CultureInfo.InvariantCulture); 58this.val = constant;
2 references to val
System.Data (2)
fx\src\data\System\Data\Filter\ConstNode.cs (1)
72return val;
fx\src\data\System\Data\Filter\FunctionNode.cs (1)
238typeName = ((ConstNode)node).val.ToString();