I have the following code:
LoadOperation<Clarifications> ClarificationsLP = context.Load(context.GetClearificationsQuery().Where(o => o.ProjectID == ((App)Application.Current).Project.ProjectID).OrderBy(o => o.RaisedOn));
ClearificationsLP.Completed += delegate {//Stuff };
When I execute this statement the second time, it does not pick up new changes from the database??
Any Idea?
Thanks,
Rick