8 references to IsNull
System.Data.Entity (8)
System\Data\Mapping\FunctionImportMappingComposable.cs (2)
397if (condition.IsNull.HasValue) 399return condition.IsNull.Value ? (DbExpression)columnRef.IsNull() : (DbExpression)columnRef.IsNull().Not();
System\Data\Mapping\MetadataMappingHasherVisitor.cs (1)
214this.AddObjectContentToHashBuilder(storageConditionPropertyMapping.IsNull);
System\Data\Mapping\StorageConditionPropertyMapping.cs (2)
151if (this.IsNull.HasValue) { 153sb.Append(this.IsNull);
System\Data\Mapping\Update\Internal\ViewLoader.cs (1)
364conditionPropertyMapping.IsNull.HasValue)
System\Data\Mapping\ViewGeneration\CellCreator.cs (2)
476if (conditionMap.IsNull.HasValue) 479Constant conditionConstant = (true == conditionMap.IsNull.Value) ? Constant.Null : Constant.NotNull;