Scenario: You need to implement a custom conflict resolution strategy in your ADO.NET application. What event should you handle to achieve this?

  • RowChanged
  • RowChanging
  • RowUpdated
  • RowUpdating
To implement a custom conflict resolution strategy in an ADO.NET application, you should handle the RowUpdating event. This event occurs before changes are sent to the database during an Update operation. By handling this event, you can examine the changes being made and implement your custom logic to resolve conflicts before they are applied to the database.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *