19 references to GetDomain
System.Data.Entity (19)
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQuery.cs (2)
124new Domain(domainValue, domainMap.GetDomain(path))), domainMap); 129new Domain(domainValue, domainMap.GetDomain(path))), domainMap);
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryKB.cs (2)
184List<Constant> childDomain = new List<Constant>(domainMap.GetDomain(childPath)); 211Domain typeDomain = new Domain(derivedTypes.Select(derivedType => (Constant)new TypeConstant(derivedType)), domainMap.GetDomain(currentPath));
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (6)
225return _domainMap.GetDomain(currentPath); 247IEnumerable<Constant> oldDomain = _domainMap.GetDomain(currentPath); 253oldDomain = _domainMap.GetDomain(currentPath); // is case has changed 285Set<Constant> newDomain = new Set<Constant>(_domainMap.GetDomain(currentPath), Constant.EqualityComparer); 287TraceVerbose("Shrunk domain of column {0} from {1} to {2}", currentPath, _domainMap.GetDomain(currentPath), newDomain); 325Domain typeDomain = new Domain(GetTypeConstants(derivedTypes), _domainMap.GetDomain(_extentPath));
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (4)
197List<Constant> domain = new List<Constant>(_domainMap.GetDomain(column)); 251foreach (Constant domainValue in _domainMap.GetDomain(column)) 300IEnumerable<Constant> possibleValues = memberMaps.QueryDomainMap.GetDomain(joinSlot.MemberPath); 335IEnumerable<Constant> possibleValues = memberMaps.QueryDomainMap.GetDomain(projectedSlot.MemberPath);
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (1)
680IEnumerable<Constant> possibleValues = domainMap.GetDomain(restriction.RestrictedMemberSlot.MemberPath);
System\Data\Mapping\ViewGeneration\Structures\MemberDomainMap.cs (1)
405IEnumerable<Constant> domain = GetDomain(memberPath);
System\Data\Mapping\ViewGeneration\Structures\MemberRestriction.cs (1)
114IEnumerable<Constant> domain = domainMap.GetDomain(m_restrictedMemberSlot.MemberPath);
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (1)
63IEnumerable<Constant> newPossibleValues = memberDomainMap.GetDomain(RestrictedMemberSlot.MemberPath);
System\Data\Mapping\ViewGeneration\Structures\TypeRestriction.cs (1)
62IEnumerable<Constant> possibleValues = memberDomainMap.GetDomain(RestrictedMemberSlot.MemberPath);