You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
I noticed the IncUpdateOperation does not increment (add to) the existing int value but updates it instead. So there is no difference between IncUpdateOperation and SetUpdateOperation. I think this must be a bug. If it is not a bug then please explain the difference between IncUpdateOperation and SetUpdateOperation.
IncUpdateOperation inc = new IncUpdateOperation("Total", 11);
If this is done multiple times Total will always stay 11. It is supposed to add 11 to the existing value but it does not.
The text was updated successfully, but these errors were encountered:
I noticed the IncUpdateOperation does not increment (add to) the existing int value but updates it instead. So there is no difference between IncUpdateOperation and SetUpdateOperation. I think this must be a bug. If it is not a bug then please explain the difference between IncUpdateOperation and SetUpdateOperation.
IncUpdateOperation inc = new IncUpdateOperation("Total", 11);
If this is done multiple times Total will always stay 11. It is supposed to add 11 to the existing value but it does not.
The text was updated successfully, but these errors were encountered: