25 references to Table
System.Data.Entity (25)
System\Data\Query\InternalTrees\Dump.cs (1)
522
DumpTable(op.
Table
);
System\Data\Query\InternalTrees\NodeInfo.cs (5)
519
foreach (Var v in op.
Table
.Columns)
526
if (n.Child0.Op.OpType == OpType.VarDef && n.Child0.Child0.Op.OpType == OpType.Function && op.
Table
.Keys.Count > 0)
530
if (op.
Table
.ReferencedColumns.Subsumes(op.
Table
.Keys))
532
nodeInfo.Keys.InitFrom(op.
Table
.Keys);
System\Data\Query\InternalTrees\OpCopier.cs (3)
719
Table newTable = m_destCmd.CreateTableInstance(op.
Table
.TableMetadata);
723
MapTable(newUnnest.
Table
, op.
Table
);
System\Data\Query\PlanCompiler\AggregatePushdown.cs (2)
743
PlanCompiler.Assert(op.
Table
.Columns.Count == 1, "Expected one column before NTE");
744
_groupAggregateVarInfoManager.Add(op.
Table
.Columns[0], groupAggregateVarRefInfo.GroupAggregateVarInfo, groupAggregateVarRefInfo.Computation, true);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
1336
VarInfoList outputVars = GetTableVars(op.
Table
);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (4)
316
newVar = unnestOp.
Table
.Columns[0];
692
PlanCompiler.Assert(unnest.
Table
.Columns.Count == 1, "Unnest of collection ScalarOp produced unexpected number of columns (1 expected)");
699
_varMap[unnestNode] = unnest.
Table
.Columns[0];
708
Node varRefNode = _iqtCommand.CreateNode(_iqtCommand.CreateVarRefOp(unnest.
Table
.Columns[0]));
System\Data\Query\PlanCompiler\NestPullup.cs (1)
1802
UpdateReplacementVarMap(op.
Table
.Columns, inputVars);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (5)
1230
return unnestOp.
Table
.Columns.Count == 1 ? unnestOp.
Table
.Columns[0] : null;
1377
Var unnestTableColumnVar = op.
Table
.Columns[0];
1385
m_varInfoMap.CreatePrimitiveTypeVarInfo(unnestTableColumnVar, unnestOp.
Table
.Columns[0]);
1391
n.Op = m_command.CreateUnnestOp(newUnnestVar, op.
Table
);
System\Data\Query\PlanCompiler\Normalizer.cs (2)
139
PhysicalProjectOp projectOp = m_command.CreatePhysicalProjectOp(unnestOp.
Table
.Columns[0]);
184
Var unnestOutputVar = unnestOp.
Table
.Columns[0];
System\Data\Query\PlanCompiler\VarRemapper.cs (1)
298
n.Op = m_command.CreateUnnestOp(newVar, op.
Table
);