4 writes to AlignedEntityReferences
System.Data.Entity (4)
System\Data\Objects\Internal\TransactionManager.cs (4)
225this.AlignedEntityReferences = new HashSet<EntityReference>(); 242this.AlignedEntityReferences = null; 264this.AlignedEntityReferences = new HashSet<EntityReference>(); 281this.AlignedEntityReferences = null;
6 references to AlignedEntityReferences
System.Data.Entity (6)
System\Data\Objects\DataClasses\EntityCollection.cs (2)
425bool doRelatedEndRemove = tm.AlignedEntityReferences.Contains(otherEnd); 442tm.AlignedEntityReferences.Remove(otherEnd);
System\Data\Objects\DataClasses\EntityReference_TResultType.cs (2)
382bool doRelatedEndRemove = transManager.AlignedEntityReferences.Contains(this); 415transManager.AlignedEntityReferences.Remove(this);
System\Data\Objects\EntityEntry.cs (1)
2224ObjectStateManager.TransactionManager.AlignedEntityReferences.Add(otherEndAsRef);
System\Data\Objects\Internal\TransactionManager.cs (1)
222Debug.Assert(this.AlignedEntityReferences == null, "Expected promotion index to be null when begining tracking.");