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