6 references to IsComplete
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\Structures\BoolExpressionVisitors.cs (1)
99bool result = restriction == null || restriction.IsComplete == true;
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (2)
62Debug.Assert(IsComplete, "Ranges are fixed only for complete scalar restrictions."); 76Debug.Assert(!this.IsComplete, "CreateCompleteMemberRestriction must be called only for incomplete restrictions.");
System\Data\Mapping\ViewGeneration\Structures\TypeRestriction.cs (3)
57/// Requires: <see cref="MemberRestriction.IsComplete"/> is true. 61Debug.Assert(IsComplete, "Ranges are fixed only for complete type restrictions."); 75Debug.Assert(!this.IsComplete, "CreateCompleteMemberRestriction must be called only for incomplete restrictions.");