We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d5dd1 commit a68eeb8Copy full SHA for a68eeb8
README.md
@@ -64,7 +64,8 @@ How to use :
64
//if the datatable requested a sorting on the column 0 you sort that column in your records:
65
case 0:
66
dataPage = requestedOrder.Dir.ToUpper().Equals("DESC") ?
67
- dataPage.OrderByDescending(f => f.The_column_that_corresponding_the_column0_in_your_datatable) : dataPage.OrderBy(f => f.The_column_that_corresponding_the_column0_in_your_datatable);
+ dataPage.OrderByDescending(f => f.The_column_that_corresponding_the_column0_in_your_datatable)
68
+ : dataPage.OrderBy(f => f.The_column_that_corresponding_the_column0_in_your_datatable);
69
break;
70
case 1:
71
0 commit comments