2 writes to _addedRelationshipStore
System.Data.Entity (2)
System\Data\Objects\ObjectStateManager.cs (2)
2772_addedRelationshipStore = new Dictionary<RelationshipWrapper, RelationshipEntry>(); 2900_addedRelationshipStore = null;
9 references to _addedRelationshipStore
System.Data.Entity (9)
System\Data\Objects\ObjectStateManager.cs (9)
1621((null != _addedRelationshipStore) && _addedRelationshipStore.TryGetValue(relationshipWrapper, out entry))); 1796size += ((null != _addedRelationshipStore) ? _addedRelationshipStore.Count : 0); 1846if (((EntityState.Added & state) != 0) && (null != _addedRelationshipStore)) 1848foreach (var e in _addedRelationshipStore) 2770if (null == _addedRelationshipStore) 2774dictionaryToAdd = _addedRelationshipStore; 2878dictionaryContainingEntry = _addedRelationshipStore;