I have Dataset that include table Items, How can I sort this table by Code field ?
thank\'s in advance
With DataTable, you usually sort a DataView - for example:
DataTable
DataView
DataTable table = dataSet.Tables["foo"]; DataView view = table.DefaultView; view.Sort = "Code";
then work with view.
view