2 types derived from NestBaseOp
System.Data.Entity (2)
System\Data\Query\InternalTrees\PhysicalOps.cs (2)
230internal class SingleStreamNestOp : NestBaseOp 309internal class MultiStreamNestOp : NestBaseOp
32 references to NestBaseOp
System.Data.Entity (32)
System\Data\Query\InternalTrees\Dump.cs (1)
291protected override void VisitNestOp(NestBaseOp op, Node n) {
System\Data\Query\InternalTrees\NodeInfo.cs (1)
1318protected override NodeInfo VisitNestOp(NestBaseOp op, Node n)
System\Data\Query\InternalTrees\OpCopier.cs (3)
1098NestBaseOp op = n.Op as NestBaseOp; 1127NestBaseOp newOp = null;
System\Data\Query\InternalTrees\Visitors.cs (2)
735protected virtual void VisitNestOp(NestBaseOp op, Node n) 915protected virtual TResultType VisitNestOp(NestBaseOp op, Node n)
System\Data\Query\PlanCompiler\NestPullup.cs (23)
432NestBaseOp nestOp = chi.Op as NestBaseOp; 552NestBaseOp newNestOp = Command.CreateMultiStreamNestOp(new List<InternalTrees.SortKey>(), newOutputVars, newCollectionInfoList); 661NestBaseOp nestOp = n.Child0.Op as NestBaseOp; 901NestBaseOp nestOp = (NestBaseOp)nestNode.Op; 903NestBaseOp nestedNestOp = (NestBaseOp)nestedNestNode.Op; 1086NestBaseOp nestedNestOp = (NestBaseOp)projectNode.Child0.Op; 1324NestBaseOp nestOp = nestNode.Op as NestBaseOp; 1561NestBaseOp nestOp = n.Child0.Op as NestBaseOp; 1592NestBaseOp nestOp = n.Child0.Op as NestBaseOp; 1612private NestBaseOp GetNestOpWithConsolidatedSortKeys(NestBaseOp inputNestOp, List<InternalTrees.SortKey> sortKeys) 1614NestBaseOp result; 1889protected override Node VisitNestOp(NestBaseOp op, Node n) 2353private void NormalizeNestOpInputs(NestBaseOp nestOp, Node nestNode, out VarList discriminatorVarList, out List<List<InternalTrees.SortKey>> sortKeys) 2475private Node BuildUnionAllSubqueryForNestOp(NestBaseOp nestOp, Node nestNode, VarList drivingNodeVars, VarList discriminatorVarList, out Var discriminatorVar, out List<Dictionary<Var, Var>> varMapList)
System\Data\Query\PlanCompiler\ProjectionPruner.cs (1)
350protected override Node VisitNestOp(NestBaseOp op, Node n)
System\Data\Query\PlanCompiler\VarRemapper.cs (1)
255protected override void VisitNestOp(NestBaseOp op, Node n)