2 instantiations of IntBox
System.Data.Entity (2)
System\Data\Objects\EntityEntry.cs (2)
2776properties[propertyName] = new KeyValuePair<object, IntBox>(propertyValue, new IntBox(1)); 2929properties[member.Name] = new KeyValuePair<object, IntBox>(this.GetCurrentEntityValue(member.Name), new IntBox(1));
24 references to IntBox
System.Data.Entity (24)
System\Data\Objects\DataClasses\EntityCollection.cs (1)
561internal override void RetrieveReferentialConstraintProperties(Dictionary<string, KeyValuePair<object, IntBox>> properties, HashSet<object> visited)
System\Data\Objects\DataClasses\EntityReference_TResultType.cs (2)
596internal override void RetrieveReferentialConstraintProperties(Dictionary<string, KeyValuePair<object, IntBox>> properties, HashSet<object> visited) 603Dictionary<string, KeyValuePair<object, IntBox>> retrievedProperties;
System\Data\Objects\DataClasses\RelatedEnd.cs (1)
2085internal abstract void RetrieveReferentialConstraintProperties(Dictionary<string, KeyValuePair<object, IntBox>> keyValues, HashSet<object> visited);
System\Data\Objects\DataClasses\RelationshipManager.cs (8)
1219internal void RetrieveReferentialConstraintProperties(out Dictionary<string, KeyValuePair<object, IntBox>> properties, HashSet<object> visited, bool includeOwnValues) 1226properties = new Dictionary<string, KeyValuePair<object, IntBox>>(); 1299private static bool CheckIfAllPropertiesWereRetrieved(Dictionary<string, KeyValuePair<object, IntBox>> properties, List<string> propertiesToRetrieve) 1307ICollection<KeyValuePair<object, IntBox>> values = properties.Values; 1310foreach (KeyValuePair<object, IntBox> valueCounterPair in values) 1323KeyValuePair<object, IntBox> valueCounterPair = properties[name]; 1335foreach (KeyValuePair<object, IntBox> valueCounterPair in values) 1349foreach (KeyValuePair<object, IntBox> valueCounterPair in values)
System\Data\Objects\EntityEntry.cs (8)
2687Dictionary<string, KeyValuePair<object, IntBox>> properties; 2695foreach (KeyValuePair<string, KeyValuePair<object, IntBox>> pair in properties) 2710internal void RetrieveReferentialConstraintPropertiesFromKeyEntries(Dictionary<string, KeyValuePair<object, IntBox>> properties) 2756internal static void AddOrIncreaseCounter(Dictionary<string, KeyValuePair<object, IntBox>> properties, string propertyName, object propertyValue) 2766KeyValuePair<object, IntBox> valueCounterPair = properties[propertyName]; 2776properties[propertyName] = new KeyValuePair<object, IntBox>(propertyValue, new IntBox(1)); 2915internal void GetOtherKeyProperties(Dictionary<string, KeyValuePair<object, IntBox>> properties) 2929properties[member.Name] = new KeyValuePair<object, IntBox>(this.GetCurrentEntityValue(member.Name), new IntBox(1));
System\Data\Objects\ObjectStateManager.cs (4)
3171Dictionary<string, KeyValuePair<object, IntBox>> properties = new Dictionary<string, KeyValuePair<object, IntBox>>(); 3261Dictionary<string, KeyValuePair<object, IntBox>> retrievedProperties = new Dictionary<string, KeyValuePair<object, IntBox>>();