11 references to Domain
System.Data.Entity (11)
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryKB.cs (1)
211Domain typeDomain = new Domain(derivedTypes.Select(derivedType => (Constant)new TypeConstant(derivedType)), domainMap.GetDomain(currentPath));
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (1)
325Domain typeDomain = new Domain(GetTypeConstants(derivedTypes), _domainMap.GetDomain(_extentPath));
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (3)
36this(new Constant[] { value }, possibleDiscreteValues) 486Domain restrictedDomain = new Domain(domain, possibleValues); 490restrictedDomain = restrictedDomain.Intersect(new Domain(conditionValues, possibleValues));
System\Data\Mapping\ViewGeneration\Structures\MemberRestriction.cs (2)
46m_domain = new Domain(values, values); 66: this(slot, new Domain(values, possibleValues))
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (2)
64BoolLiteral newLiteral = new ScalarRestriction(RestrictedMemberSlot, new Domain(range, newPossibleValues)); 77return new ScalarRestriction(this.RestrictedMemberSlot, new Domain(this.Domain.Values, possibleValues));
System\Data\Mapping\ViewGeneration\Structures\TypeRestriction.cs (2)
63BoolLiteral newLiteral = new TypeRestriction(RestrictedMemberSlot, new Domain(range, possibleValues)); 76return new TypeRestriction(this.RestrictedMemberSlot, new Domain(this.Domain.Values, possibleValues));