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