1 write to _domainMap
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (1)
84_domainMap = context.MemberMaps.LeftDomainMap;
22 references to _domainMap
System.Data.Entity (22)
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (22)
89_keyAttributes = new List<MemberPath>(MemberPath.GetKeyMembers(context.Extent, _domainMap)); 121GenerateCaseStatements(_domainMap.ConditionMembers(_extentPath.Extent), _usedViews); 148_domainQuery, _context, _domainMap, _errorLog, _config); 225return _domainMap.GetDomain(currentPath); 243List<MemberPath> members = new List<MemberPath>(_domainMap.ConditionMembers(_extentPath.Extent)); 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); 288_domainMap.UpdateConditionMemberDomain(currentPath, newDomain); 293query.Condition.FixDomainMap(_domainMap); 325Domain typeDomain = new Domain(GetTypeConstants(derivedTypes), _domainMap.GetDomain(_extentPath)); 326domainQueryCondition = BoolExpression.CreateLiteral(new TypeRestriction(new MemberProjectedSlot(_extentPath), typeDomain), _domainMap); 408if (!ErrorPatternMatcher.FindMappingErrors(_context, _domainMap, _errorLog)) 438List<MemberPath> nonConditionalAttributes = GetNonConditionalScalarMembers(edmType, currentPath, _domainMap).Union(GetNonConditionalComplexMembers(edmType, currentPath, _domainMap)).ToList(); 453foreach (MemberPath complexMember in GetConditionalComplexMembers(edmType, currentPath, _domainMap)) 458foreach (MemberPath scalarMember in GetConditionalScalarMembers(edmType, currentPath, _domainMap)) 559if (!ErrorPatternMatcher.FindMappingErrors(_context, _domainMap, _errorLog)) 683!_domainMap.IsConditionMember(memberPath) && 1118return FragmentQuery.CreateMemberCondition(path, domainValue, _domainMap); 1123return CreateMemberConditionQuery(currentPath, domainValue, _keyAttributes, _domainMap);