Showing posts with label Sort Datatable. Show all posts
Showing posts with label Sort Datatable. Show all posts

Tuesday, March 20, 2012

C#(Sorting DataTable with Link)


//Sorting The DataTable Through Link
EnumerableRowCollection<DataRow> query = from <Table_Name> in <Previous_DataTable>.AsEnumerable()
                                         orderby FieldName.Field<Data_Type>("Column_Name")
                                         select <Table_Name>;