Is there any sensible reason not to raise the ListChanged event of EntitySet if its IsLoaded property is false ? I don't think so. I just spent one hour trying to figure out why the following simple scenario doesn't work: Code Snippet var choice = new Choice(); // choice.Results is an entityset (it's an association - generated by the linq designer tool) choice.Results.ListChanged += delegate { /* do whatever here, IT WILL NEVER GET CALLED */ }; choice.Results.Add(new Result()); // Notification wasn't
Read More...