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