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