I was using the following code to repopulate an ...ObservableCollection<T>... on change notification from a ...SqlDependency...:...var set = _dbContext.Set<T>().ToList();
this.AddRange(set);
...In this scenario, the ...OnChange... event fires correctly, b...