1 write to _bindingList
System.Data.Entity (1)
System\Data\Objects\ObjectViewEntityCollectionData.cs (1)
65_bindingList = new List<TViewElement>(entityCollection.Count);
15 references to _bindingList
System.Data.Entity (15)
System\Data\Objects\ObjectViewEntityCollectionData.cs (15)
68_bindingList.Add(entity); 76get { return _bindingList; } 119_bindingList.Add(item); 127return _bindingList.Count - 1; 132TViewElement item = _bindingList[index]; 150if (0 < _bindingList.Count) 154foreach (object item in _bindingList) 171removed = _bindingList.Remove(item); 194int oldIndex = _bindingList.IndexOf(removedItem); 197_bindingList.Remove(removedItem); 216_bindingList.Add(addedItem); 221changeArgs = new ListChangedEventArgs(ListChangedType.ItemAdded, _bindingList.Count - 1 /* newIndex*/, -1 /* oldIndex*/); 227foreach (TViewElement entity in _bindingList) 232_bindingList.Clear(); 236_bindingList.Add(entity);