Does sorting a dataview cause its datatable to change

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I sort a dataview using dataview.sort = "sort string", can the
dataview.table change?
 
No, sorting dataviews doesn't change the underlying table in any way.
However, note that when you bind DataTable you are actually binding
DataTable.DefaultView.
 
Back
Top