1 write to m_map
System.Data.Entity (1)
System\Data\Common\Utils\KeyToListMap.cs (1)
30
m_map
= new Dictionary<TKey, List<TValue>>(comparer);
10 references to m_map
System.Data.Entity (10)
System\Data\Common\Utils\KeyToListMap.cs (10)
42
get { return
m_map
.Keys; }
60
return
m_map
;
67
return
m_map
.ContainsKey(key);
75
if (!
m_map
.TryGetValue(key, out valueList)) {
77
m_map
[key] = valueList;
92
return
m_map
.Remove(key);
98
Debug.Assert(
m_map
.ContainsKey(key), "key not registered in map");
99
return new System.Collections.ObjectModel.ReadOnlyCollection<TValue>(
m_map
[key]);
109
if (
m_map
.TryGetValue(key, out list))
122
if (
m_map
.TryGetValue(key, out values)) {