https://datatables.net/usage/server-side
On the page above, there are parameters that you need to receive to make server-side datatable work. I have a helper class
public class TableParameter
{
    public string sEcho { get; set; }
    public int iDisplayStart { get; set; }
    public int iDisplayLength { get; set; }
    public int iSortingCols { get; set; } 
}
But in order to sort columns I need to receive
 string sSortDir_(int)
How do I do that? I know (int) represents column ID that needs to be sorted, but I just can't catch it in my controller.