asp.net: huge difference between DataView.Table and DataView.ToTable

Both DataView.Table and DataView.ToTable return a DataTable from a DataView. The difference is that .Table gives you the underlying data, with no changes from the dataview’s sorting or filtering. ToTable on the other hand, gives you the data in the dataview after filtering and sorting! This is the sort of thing I’ve come to expect … Continue reading asp.net: huge difference between DataView.Table and DataView.ToTable