2 writes to AddedRelationshipsByForeignKey
System.Data.Entity (2)
System\Data\Objects\Internal\TransactionManager.cs (2)
308this.AddedRelationshipsByForeignKey = new Dictionary<IEntityWrapper, Dictionary<RelatedEnd, HashSet<EntityKey>>>(); 327this.AddedRelationshipsByForeignKey = null;
5 references to AddedRelationshipsByForeignKey
System.Data.Entity (5)
System\Data\Objects\EntityEntry.cs (2)
3926this.AddRelationshipDetectedByForeignKey(tm.AddedRelationshipsByForeignKey, tm.AddedRelationshipsByPrincipalKey, currentKey, entry, entityReference); 3942this.AddRelationshipDetectedByForeignKey(tm.AddedRelationshipsByForeignKey, tm.AddedRelationshipsByPrincipalKey, currentKey, entry, entityReference);
System\Data\Objects\ObjectStateManager.cs (3)
3125tm.AddedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out addedRelationshipsByForeignKey); 3351tm.AddedRelationshipsByForeignKey.TryGetValue(entry.WrappedEntity, out addedRelationshipsByForeignKey)) 3666if (tm.AddedRelationshipsByForeignKey.TryGetValue(wrappedEntity, out addedRelationshipsByForeignKey) &&