4 types derived from SimpleCellTreeVisitor
System.Data.Entity (4)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (1)
480internal class DomainConstraintVisitor : CellTreeNode.SimpleCellTreeVisitor<bool, bool>
System\Data\Mapping\ViewGeneration\Structures\CellTreeNodeVisitors.cs (3)
106private class FlatteningVisitor : SimpleCellTreeVisitor<bool, CellTreeNode> 160private class AssociativeOpFlatteningVisitor : SimpleCellTreeVisitor<bool, CellTreeNode> 222private class LeafVisitor : SimpleCellTreeVisitor<bool, IEnumerable<LeafCellTreeNode>>
3 references to SimpleCellTreeVisitor
System.Data.Entity (3)
System\Data\Mapping\ViewGeneration\Structures\CellTreeNode.cs (1)
101internal abstract TOutput Accept<TInput, TOutput>(SimpleCellTreeVisitor<TInput, TOutput> visitor, TInput param);
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)