6 writes to ProcessedEntities
System.Data.Entity (6)
System\Data\Objects\Internal\TransactionManager.cs (6)
232this.ProcessedEntities = new HashSet<IEntityWrapper>(); 250this.ProcessedEntities = null; 267this.ProcessedEntities = new HashSet<IEntityWrapper>(); 285this.ProcessedEntities = null; 302this.ProcessedEntities = new HashSet<IEntityWrapper>(); 321this.ProcessedEntities = null;
14 references to ProcessedEntities
System.Data.Entity (14)
System\Data\Objects\DataClasses\EntityReference_TResultType.cs (4)
386if ((transManager.ProcessedEntities == null || !transManager.ProcessedEntities.Contains(_wrappedCachedValue)) && 772if (tm == null || tm.ProcessedEntities == null || tm.ProcessedEntities.Contains(_wrappedCachedValue))
System\Data\Objects\DataClasses\RelatedEnd.cs (2)
1288attachedRelatedEnd.WrappedOwner.Context.ObjectStateManager.TransactionManager.ProcessedEntities.Add(attachedRelatedEnd.WrappedOwner); 1753_context.ObjectStateManager.TransactionManager.ProcessedEntities.Contains(wrappedEntity))
System\Data\Objects\Internal\TransactionManager.cs (2)
344Debug.Assert(this.ProcessedEntities != null, "ProcessedEntities should not be null"); 345this.ProcessedEntities.Clear();
System\Data\Objects\ObjectContext.cs (6)
726Debug.Assert(this.ObjectStateManager.TransactionManager.ProcessedEntities != null, "Expected non-null collection when flag set."); 728this.ObjectStateManager.TransactionManager.ProcessedEntities.Add(wrappedEntity); 1146Debug.Assert(this.ObjectStateManager.TransactionManager.ProcessedEntities != null, "Expected non-null collection when flag set."); 1148this.ObjectStateManager.TransactionManager.ProcessedEntities.Add(wrappedEntity); 1177Debug.Assert(this.ObjectStateManager.TransactionManager.ProcessedEntities != null, "Expected non-null collection when flag set."); 1179this.ObjectStateManager.TransactionManager.ProcessedEntities.Add(wrappedEntity);