when i edit an appoinment the changes doesn't show in the view, i tried both changing the data of the object in the observablecollection
Appointments.FirstOrDefault(x => ((x.Id as int?) ?? 0) == idselectedappoinment).Notes = Notes;
Appointments.FirstOrDefault(x => ((x.Id as int?) ?? 0) ==
idselectedappoinment
).Subject=
Subject;
and removing the original object to add the edited one
Appointments.Remove(Appointments.FirstOrDefault(x => ((x.Id as int?)??0) ==
idselectedappoinment));
Appointments.Add(editedappoinment);
none of them makes the appoinment in the view update, i have to change the date or the view and go back for it to work,
this only happens in day view, in agenda it updates correctly with both methods