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