7 references to VarDef
System.Data.Entity (7)
System\Data\Query\InternalTrees\AncillaryOps.cs (1)
31
private VarDefOp() : base(OpType.
VarDef
) { }
System\Data\Query\InternalTrees\Dump.cs (1)
999
case OpType.
VarDef
:
System\Data\Query\InternalTrees\NodeInfo.cs (1)
526
if (n.Child0.Op.OpType == OpType.
VarDef
&& n.Child0.Child0.Op.OpType == OpType.Function && op.Table.Keys.Count > 0)
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
1322
PlanCompiler.Assert(n.Child0.Op.OpType == OpType.
VarDef
,
System\Data\Query\PlanCompiler\NestPullup.cs (1)
1745
PlanCompiler.Assert(n.Child0.Op.OpType == OpType.
VarDef
, "Unnest without VarDef input?");
System\Data\Query\PlanCompiler\ProjectionPruner.cs (1)
532
List<Node> constantKeys = varDefListNode.Children.Where(d => d.Op.OpType == OpType.
VarDef
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
2743
PlanCompiler.Assert(varDefNode.Op.OpType == OpType.
VarDef
, "Expected VarDefOp. Found " + varDefNode.Op.OpType + " instead");