1 override of IsScalarOp
System.Data.Entity (1)
System\Data\Query\InternalTrees\Ops.cs (1)
528internal override bool IsScalarOp { get { return true; } }
6 references to IsScalarOp
System.Data.Entity (6)
System\Data\Query\InternalTrees\NodeInfo.cs (1)
409Debug.Assert(n.Op.IsScalarOp || n.Op.IsAncillaryOp, "not a supported optype");
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1162PlanCompiler.Assert(node.Op.IsScalarOp, "I want a scalar op");
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
369PlanCompiler.Assert(node.Op.IsScalarOp, "Attempting SoftCast around non-ScalarOp?");
System\Data\Query\PlanCompiler\Normalizer.cs (1)
116PlanCompiler.Assert(collectionNode.Op.IsScalarOp, "non-scalar usage of Unnest?");
System\Data\Query\PlanCompiler\TransformationRules.cs (2)
89PlanCompiler.Assert(node.Op.IsScalarOp, "Expected a scalarOp: Found " + Dump.AutoString.ToString(node.Op.OpType)); 549if (!node.Op.IsScalarOp)