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 Apr 11, 2023. It is now read-only.
The documentation available for remove always calls saveChanges after calling remove. So I set it up like that and when invoked it would make two delete calls to the OData service. One after remove and one after saveChanges. For now I removed saveChanges and am only using remove. Is this the correct behavior?
The text was updated successfully, but these errors were encountered:
Are you calling remove on the Entity or the EntitySet? If you call remove directly on the Entity, the DELETE request will issue at once, and saveChanges is not needed.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The documentation available for
remove
always callssaveChanges
after callingremove
. So I set it up like that and when invoked it would make two delete calls to the OData service. One afterremove
and one aftersaveChanges
. For now I removedsaveChanges
and am only usingremove
. Is this the correct behavior?The text was updated successfully, but these errors were encountered: