1 write to _map
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\EntityMap.cs (1)
22
_map
= new Dictionary<TEntity, TRecord>(comparer);
6 references to _map
ILCompiler.MetadataTransform (6)
ILCompiler\Metadata\EntityMap.cs (6)
15
get { return
_map
.Values; }
18
public IEnumerable<KeyValuePair<TEntity, TRecord>> Entries =>
_map
;
30
if (!
_map
.TryGetValue(entity, out record))
54
_map
.Add(entity, concreteRecord);
66
return
_map
.TryGetValue(entity, out record);
77
_map
.Add(entity, concreteRecord);