App creates a collection by filtering a Dataverse table:
ClearCollect(ExampleCollection,Filter(ExampleDataverseTable,ExampleCoumnValue=ExampleValue))
The app both updates existing rows and adds new rows to the collection. The Collection is then patched back to the Dataverse table.
Patch(ExampleDataverseTable,ExampleCollection)
For adding new rows this seems to work fine. However, as soon as I edit an existing row the patch action generates a Network error.

Is there a straightforward way to resolve this issue?