10 references to IsNullable
System.Data.Entity (10)
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (1)
1235if (domainValue.IsNull() && path.IsNullable)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (2)
329if (projectedSlot == null || !projectedSlot.MemberPath.IsNullable) //don't bother checking further fore non nullable C-side member 357if (!column.IsNullable && isColumnSimpleType)
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (2)
121if (memberPath.IsNullable) 190else if (memberPath.IsNullable || memberPath.IsComputed)
System\Data\Mapping\ViewGeneration\Structures\MemberPath.cs (1)
366if (path.IsNullable == false)
System\Data\Mapping\ViewGeneration\Structures\NegatedConstant.cs (1)
175bool isNullable = outputMember.IsNullable;
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (1)
305bool excludeNull = !skipIsNotNull && this.RestrictedMemberSlot.MemberPath.IsNullable;
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (2)
225memberPath.IsNullable && IsMemberPartOfNotNullCondition(new LeftCellWrapper[] { leftCellWrapper }, memberPath, m_viewgenContext.ViewTarget)) 228if (rightMemberPath != null && rightMemberPath.IsNullable &&