Select from following answers:- Call the DataSet.Merge method on the persisted DataSet with the new DataSet. Specify that PreserveChanges is True.

- Call the DataSet.Merge method on the persisted DataSet with the new DataSet. Specify that PreserveChanges is False.
- Call the DataTable.Copy method for each DataTable in the new DataSet and add the copied DataTable to the persisted DataSet.
- All Above
To merge DataSet contents and ensure that the changes in the existing DataSet are preserved, set the PreserveChanges flag to True. Incoming values do not overwrite existing values in the Current row version of the existing row.
Adding copied tables from the persisted DataSet to the new DataSet does not merge the data; it creates duplicate tables.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator