4 writes to PopulatedEntityReferences
System.Data.Entity (4)
System\Data\Objects\Internal\TransactionManager.cs (4)
224this.PopulatedEntityReferences = new HashSet<EntityReference>(); 241this.PopulatedEntityReferences = null; 263this.PopulatedEntityReferences = new HashSet<EntityReference>(); 280this.PopulatedEntityReferences = null;
10 references to PopulatedEntityReferences
System.Data.Entity (10)
System\Data\Objects\DataClasses\EntityCollection.cs (2)
424bool doFullRemove = tm.PopulatedEntityReferences.Contains(otherEnd); 438tm.PopulatedEntityReferences.Remove(otherEnd);
System\Data\Objects\DataClasses\EntityReference_TResultType.cs (3)
346manager.TransactionManager.PopulatedEntityReferences.Add(this); 381bool doFullRemove = transManager.PopulatedEntityReferences.Contains(this); 411transManager.PopulatedEntityReferences.Remove(this);
System\Data\Objects\EntityEntry.cs (4)
3554if (_cache.TransactionManager.PopulatedEntityReferences != null) 3558_cache.TransactionManager.PopulatedEntityReferences.Add(relatedEnd); 3564if (_cache.TransactionManager.PopulatedEntityReferences != null) 3569_cache.TransactionManager.PopulatedEntityReferences.Add(otherEnd);
System\Data\Objects\Internal\TransactionManager.cs (1)
221Debug.Assert(this.PopulatedEntityReferences == null, "Expected promotion index to be null when begining tracking.");