6 writes to WrappedEntities
System.Data.Entity (6)
System\Data\Objects\Internal\TransactionManager.cs (6)
233this.WrappedEntities = new Dictionary<object, IEntityWrapper>(); 251this.WrappedEntities = null; 268this.WrappedEntities = new Dictionary<object, IEntityWrapper>(); 286this.WrappedEntities = null; 303this.WrappedEntities = new Dictionary<object, IEntityWrapper>(); 322this.WrappedEntities = null;
5 references to WrappedEntities
System.Data.Entity (5)
System\Data\Objects\DataClasses\RelatedEnd.cs (2)
1284if (!attachedRelatedEnd.WrappedOwner.Context.ObjectStateManager.TransactionManager.WrappedEntities.ContainsKey(entityToAdd.Entity)) 1286attachedRelatedEnd.WrappedOwner.Context.ObjectStateManager.TransactionManager.WrappedEntities.Add(entityToAdd.Entity, entityToAdd);
System\Data\Objects\EntityEntry.cs (1)
2232if (!this.ObjectStateManager.TransactionManager.WrappedEntities.TryGetValue(o, out relatedWrapper))
System\Data\Objects\Internal\EntityWrapperFactory.cs (2)
246if (stateManager.TransactionManager.WrappedEntities.TryGetValue(entity, out wrapper)) 285stateManager.TransactionManager.WrappedEntities.Add(entity, wrapper);