1var result = from row in DataSet.DataTable 2 where row.Surname == "Peter" 3 orderby row.Name ascending 4 select row;