2 overrides of Accept
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
106internal override TOutput Accept<TInput, TOutput>(SimpleCellTreeVisitor<TInput, TOutput> visitor, TInput param)
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (1)
132internal override TOutput Accept<TInput, TOutput>(SimpleCellTreeVisitor<TInput, TOutput> visitor, TInput param)
9 references to Accept
System.Data.Entity (9)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (3)
497node.Accept<bool, bool>(visitor, true); 544node.Children[0].Accept<bool, bool>(this, dummy); 550child.Accept<bool, bool>(this, dummy);
System\Data\Mapping\ViewGeneration\Structures\CellTreeNodeVisitors.cs (6)
117return node.Accept<bool, CellTreeNode>(visitor, true); 134CellTreeNode flattenedChild = child.Accept<bool, CellTreeNode>(this, dummy); 172return newNode.Accept<bool, CellTreeNode>(visitor, true); 188CellTreeNode flattenedChild = child.Accept<bool, CellTreeNode>(this, dummy); 230return node.Accept<bool, IEnumerable<LeafCellTreeNode>>(visitor, true); 242IEnumerable<LeafCellTreeNode> children = child.Accept<bool, IEnumerable<LeafCellTreeNode>>(this, dummy);