5 types derived from ConstantBaseOp
System.Data.Entity (5)
System\Data\Query\InternalTrees\ScalarOps.cs (5)
79internal sealed class ConstantOp : ConstantBaseOp 119internal sealed class NullOp : ConstantBaseOp 159internal sealed class InternalConstantOp : ConstantBaseOp 201internal sealed class NullSentinelOp : ConstantBaseOp 240internal sealed class ConstantPredicateOp : ConstantBaseOp
17 references to ConstantBaseOp
System.Data.Entity (17)
System\Data\Query\InternalTrees\Command.cs (1)
607internal ConstantBaseOp CreateConstantOp(TypeUsage type, object value)
System\Data\Query\InternalTrees\Dump.cs (1)
217protected override void VisitConstantOp(ConstantBaseOp op, Node n) {
System\Data\Query\InternalTrees\NodeInfo.cs (2)
1160ConstantBaseOp constOp = (ConstantBaseOp)n.Child2.Op;
System\Data\Query\InternalTrees\OpCopier.cs (1)
295ConstantBaseOp newOp = m_destCmd.CreateConstantOp(op.Type, op.Value);
System\Data\Query\InternalTrees\ScalarOps.cs (2)
66ConstantBaseOp otherConstant = other as ConstantBaseOp;
System\Data\Query\InternalTrees\Visitors.cs (2)
72protected virtual void VisitConstantOp(ConstantBaseOp op, Node n) 1300protected virtual TResultType VisitConstantOp(ConstantBaseOp op, Node n)
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
672protected override DbExpression VisitConstantOp(ConstantBaseOp op, Node n)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
988ConstantBaseOp op = _iqtCommand.CreateConstantOp(e.ResultType, e.GetValue());
System\Data\Query\PlanCompiler\NestPullup.cs (2)
2445private Node AugmentNodeWithConstant(Node input, Func<ConstantBaseOp> createOp, out Var constantVar) 2449ConstantBaseOp constantOp = createOp();
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
2618ConstantBaseOp discriminatorValueOp = m_command.CreateConstantOp(md.Helper.GetModelTypeUsage(op.DiscriminatorMap.DiscriminatorProperty.TypeUsage),
System\Data\Query\PlanCompiler\Predicate.cs (2)
456ConstantBaseOp constantOp = simplePredNode.Child1.Op as ConstantBaseOp;
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
1479ConstantBaseOp trueOp = m_command.CreateConstantOp(op.Type, true);