2 writes to _unchangedRelationshipStore
System.Data.Entity (2)
System\Data\Objects\ObjectStateManager.cs (2)
2765
_unchangedRelationshipStore
= new Dictionary<RelationshipWrapper, RelationshipEntry>();
2897
_unchangedRelationshipStore
= null;
9 references to _unchangedRelationshipStore
System.Data.Entity (9)
System\Data\Objects\ObjectStateManager.cs (9)
1619
bool result = (((null !=
_unchangedRelationshipStore
) &&
_unchangedRelationshipStore
.TryGetValue(relationshipWrapper, out entry)) ||
1810
size += ((null !=
_unchangedRelationshipStore
) ?
_unchangedRelationshipStore
.Count : 0);
1860
if (((EntityState.Unchanged & state) != 0) && (null !=
_unchangedRelationshipStore
))
1862
foreach (var e in
_unchangedRelationshipStore
)
2763
if (null ==
_unchangedRelationshipStore
)
2767
dictionaryToAdd =
_unchangedRelationshipStore
;
2875
dictionaryContainingEntry =
_unchangedRelationshipStore
;