Hi
I have the following problem:
1) I create a recurring appointment
2) I'm changing a single date of recurring appointment
Now is not the Added but the Changed Event fired for the variance.
That is the correct behavior. By changing a property of an occurrence you are not really creating a new activity instance - you are just modifying/changing one occurrence of a recurring activity. If you wanted to know if an activity is becoming a variance then you could compare the IsVariance of the Activity to that of OriginalActivityData.
Thanks for the quick reply.
Then I do the following question:
I have to save variancen in DB otherwise they will not shown after restart the application.Per variance (edit / delete) an entry in the DB so I have understood it.
I use a Binding (MVVM / ObservableCollection / Entity Framework ...).
how can I recognize a new variance?IsVariance is always true ... creating or amending a variance may have been changed againIsAddNew = True in both cases (create / change)
maybe you have a small example on this subject ...
Thank you.