15 references to IsNull
System.Data.Entity (15)
System\Data\Query\InternalTrees\Dump.cs (1)
919
case OpType.
IsNull
:
System\Data\Query\InternalTrees\ScalarOps.cs (1)
772
internal static readonly ConditionalOp PatternIsNull = new ConditionalOp(OpType.
IsNull
);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
913
case OpType.
IsNull
:
System\Data\Query\PlanCompiler\ITreeGenerator.cs (4)
1487
Op op = _iqtCommand.CreateConditionalOp(OpType.
IsNull
);
2729
_iqtCommand.CreateConditionalOp(OpType.
IsNull
),
2732
_iqtCommand.CreateConditionalOp(OpType.
IsNull
),
2993
_iqtCommand.CreateConditionalOp(OpType.
IsNull
),
System\Data\Query\PlanCompiler\JoinGraph.cs (1)
2339
Node isNotNullNode = m_command.CreateNode(m_command.CreateConditionalOp(OpType.
IsNull
), varRefNode);
System\Data\Query\PlanCompiler\NestPullup.cs (1)
603
Command.CreateConditionalOp(OpType.
IsNull
),
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (2)
2176
if (op.OpType != OpType.
IsNull
)
2221
Node isNullNode = m_command.CreateNode(m_command.CreateConditionalOp(OpType.
IsNull
), propertyValue);
System\Data\Query\PlanCompiler\Predicate.cs (1)
446
if (simplePredNode.Child0.Op.OpType != OpType.
IsNull
)
System\Data\Query\PlanCompiler\PreProcessor.cs (2)
1228
if (op.OpType == OpType.
IsNull
&& TypeSemantics.IsRowType(n.Child0.Op.Type) || TypeSemantics.IsComplexType(n.Child0.Op.Type))
1468
ConditionalOp isNullOp = m_command.CreateConditionalOp(OpType.
IsNull
);
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
345
Node whenNode = this.Command.CreateNode(this.Command.CreateConditionalOp(OpType.
IsNull
), varRefNode);