linq-to-mysql

Sortable JqGrid using LINQ to MySQL (DbLinq) and Dynamic LINQ - Orderby doesn't work

我的未来我决定 提交于 2019-11-27 02:03:22
I've got problem with sorting entries in JqGrid. Orderby seem to not work. I set breakpoint in code and I noticed, that orderby doesn't change order of elements. Any idea what could be wrong? I'm using LINQ to SQL with MySQL (DbLinq project). My action code: public ActionResult All(string sidx, string sord, int page, int rows) { var tickets = ZTRepository.GetAllTickets().OrderBy(sidx + " " + sord).ToList(); var rowdata = ( from ticket in tickets select new { i = ticket.ID, cell = new String[] { ticket.ID.ToString(), ticket.Hardware, ticket.Issue, ticket.IssueDetails, ticket.RequestedBy, ticket

Sortable JqGrid using LINQ to MySQL (DbLinq) and Dynamic LINQ - Orderby doesn't work

☆樱花仙子☆ 提交于 2019-11-26 12:30:40
问题 I\'ve got problem with sorting entries in JqGrid. Orderby seem to not work. I set breakpoint in code and I noticed, that orderby doesn\'t change order of elements. Any idea what could be wrong? I\'m using LINQ to SQL with MySQL (DbLinq project). My action code: public ActionResult All(string sidx, string sord, int page, int rows) { var tickets = ZTRepository.GetAllTickets().OrderBy(sidx + \" \" + sord).ToList(); var rowdata = ( from ticket in tickets select new { i = ticket.ID, cell = new