Skip to content

Commit a68eeb8

Browse files
authored
Update README.md
1 parent 30d5dd1 commit a68eeb8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ How to use :
6464
//if the datatable requested a sorting on the column 0 you sort that column in your records:
6565
case 0:
6666
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);
67+
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);
6869
break;
6970
case 1:
7071
dataPage = requestedOrder.Dir.ToUpper().Equals("DESC") ?

0 commit comments

Comments
 (0)