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)));
1796
size += ((null !=
_addedRelationshipStore
) ?
_addedRelationshipStore
.Count : 0);
1846
if (((EntityState.Added & state) != 0) && (null !=
_addedRelationshipStore
))
1848
foreach (var e in
_addedRelationshipStore
)
2770
if (null ==
_addedRelationshipStore
)
2774
dictionaryToAdd =
_addedRelationshipStore
;
2878
dictionaryContainingEntry =
_addedRelationshipStore
;