I have a datatable which is bound to a DataGridView in my C# winforms app.
I want to pass datatable to the server side with only those rows which are changed/updated by the user in the datagrid.
But dataTable.GetChanges() is returning me all the rows instead of just the changed ones.
Am I missing something over here?
You use GetChanges() on DataTable, not DataSet.