2 instantiations of FunctionNode
System.Data (2)
fx\src\data\System\Data\Filter\ExpressionParser.cs (2)
317node = new FunctionNode(_table, "In"); 347node = new FunctionNode(_table, name.name);
9 references to FunctionNode
System.Data (9)
fx\src\data\System\Data\Filter\BinaryNode.cs (3)
819if (!(right is FunctionNode)) { 833FunctionNode into = (FunctionNode)right;
fx\src\data\System\Data\Filter\ExpressionParser.cs (6)
350Aggregate agg = (Aggregate)(int)((FunctionNode)node).Aggregate; 395Debug.Assert(topNode > 0 && NodePeek().GetType() == typeof(FunctionNode), "The function node should be created on '('"); 397FunctionNode func = (FunctionNode)NodePop(); 438FunctionNode func = (FunctionNode)NodePop();