6 overrides of IsNotNull
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\Structures\Constant.cs (3)
145internal override bool IsNotNull() 213internal override bool IsNotNull() 284internal override bool IsNotNull()
System\Data\Mapping\ViewGeneration\Structures\NegatedConstant.cs (1)
66internal override bool IsNotNull()
System\Data\Mapping\ViewGeneration\Structures\ScalarConstant.cs (1)
58internal override bool IsNotNull()
System\Data\Mapping\ViewGeneration\Structures\TypeConstant.cs (1)
63internal override bool IsNotNull()
2 references to IsNotNull
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\ConstantProjectedSlot.cs (1)
31Debug.Assert(value.IsNotNull() == false, "Cannot store NotNull in a slot - NotNull is only for conditions");
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (1)
37Debug.Assert(value is ScalarConstant || value.IsNull() || value.IsNotNull(), "value is expected to be ScalarConstant, NULL, or NOT_NULL.");