20 references to Command
System.Data.Entity (20)
System\Data\Query\PlanCompiler\AggregatePushdown.cs (1)
849AggregatePushdown aggregatePushdown = new AggregatePushdown(planCompilerState.Command);
System\Data\Query\PlanCompiler\CodeGen.cs (1)
146private Command Command { get { return m_compilerState.Command; } }
System\Data\Query\PlanCompiler\JoinElimination.cs (3)
53private Command Command { get { return m_compilerState.Command; } } 66m_varRemapper = new VarRemapper(m_compilerState.Command); 67m_varRefManager = new VarRefManager(m_compilerState.Command);
System\Data\Query\PlanCompiler\NestPullup.cs (2)
85m_varRemapper = new VarRemapper(compilerState.Command); 121private Command Command { get { return m_compilerState.Command; } }
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (2)
111private Command m_command { get { return m_compilerState.Command; } } 159PropertyPushdownHelper.Process(compilerState.Command, structuredTypeInfo, out varPropertyMap, out nodePropertyMap);
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
161StructuredTypeInfo.Process(planCompilerState.Command,
System\Data\Query\PlanCompiler\ProjectionPruner.cs (4)
110private Command m_command { get { return m_compilerState.Command; } } 124m_referencedVars = compilerState.Command.CreateVarVec(); 138compilerState.Command.Root = Process(compilerState, compilerState.Command.Root);
System\Data\Query\PlanCompiler\SubqueryTrackingVisitor.cs (1)
39protected Command m_command { get { return m_compilerState.Command; } }
System\Data\Query\PlanCompiler\TransformationRules.cs (5)
401: base(compilerState.Command) 404m_remapper = new VarRemapper(compilerState.Command); 406m_remappedVars = compilerState.Command.CreateVarVec(); 802compilerState.Command.Root = ruleProcessor.ApplyRulesToSubtree(context, rulesTable, compilerState.Command.Root);