3 writes to name
System.Data (3)
fx\src\data\System\Data\Filter\NameNode.cs (3)
26this.name = ParseName(text, start, pos); 30this.name = name; 59name = column.ColumnName;
11 references to name
System.Data (11)
fx\src\data\System\Data\Filter\ExpressionParser.cs (2)
347node = new FunctionNode(_table, name.name); 508string newName = nameBefore.name + "." + NameNode.ParseName(text, start, pos);
fx\src\data\System\Data\Filter\FunctionNode.cs (2)
90arguments[1] = new ConstNode(table, ValueType.Str, type.name); 235typeName = ((NameNode)node).name;
fx\src\data\System\Data\Filter\NameNode.cs (7)
42throw ExprException.UnboundName(name); 45this.column = table.Columns[name]; 53throw ExprException.UnboundName(name); 57throw ExprException.UnboundName(name); 63Debug.Assert(column != null, "Failed to bind column " + name); 85throw ExprException.UnboundName(name); 92throw ExprException.UnboundName(name);