12 references to Null
System.Data.Entity (12)
System\Data\Query\InternalTrees\Dump.cs (1)
957
case OpType.
Null
:
System\Data\Query\InternalTrees\ScalarOps.cs (2)
123
: base(OpType.
Null
, type, null)
126
private NullOp() : base(OpType.
Null
) { }
System\Data\Query\PlanCompiler\CTreeGenerator.cs (2)
1590
bool nullSkip = (OpType.
Null
== n.Child1.Op.OpType);
1591
bool nullLimit = (OpType.
Null
== n.Child2.Op.OpType);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1352
OpType.
Null
== inputNode.Child2.Op.OpType)
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
310
if (inputOp.OpType == OpType.
Null
)
System\Data\Query\PlanCompiler\PlanCompilerUtil.cs (3)
56
if (n.Child1.Op.OpType == OpType.
Null
)
61
if (n.Child2.Op.OpType == OpType.
Null
)
95
opType == OpType.
Null
||
System\Data\Query\PlanCompiler\Predicate.cs (1)
457
if (constantOp == null || (constantOp.OpType == OpType.
Null
))
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
2044
if (node.Op.OpType != OpType.Constant && node.Op.OpType != OpType.
Null
)