想要一个Query在Linq查询中按变量排序

前端之家收集整理的这篇文章主要介绍了想要一个Query在Linq查询中按变量排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何通过Column变量进行排序,因为我在页面上有一个下拉列表,我想根据在此下拉列表中选择的sord顺序显示网格,例如价格,代码,评级,描述等等,我不想为每个单独写一个查询柱.
from lm in lDc.tbl_Products
where lm.TypeRef == pTypeId
 orderby lm.Code ascending
 select new;

解决方法

假设您想通过sql进行排序,那么您需要传递排序列/类型.查询将被推迟,直到您实际执行select操作,以便您可以逐步构建查询,并在完成后执行它,如下所示:
// Do you query first.  This will NOT execute in sql yet.
var query = lDC.tbl_Products.Where(p => p.TypeRef == pTypeId);

// Now add on the sort that you require... you could do ascending,descending,// different cols etc..
switch (sortColumn)
{
    case "Price":
        query = query.OrderBy(q => q.Price);
        break;
    case "Code":
        query = query.OrderBy(q => q.Code);
        break;
    // etc...
}

// Now execute the query to get a result
var result = query.ToList();

如果您想在sql之外执行此操作,那么只需获得没有排序的基本结果,然后根据您需要的排序条件将OrderBy应用于结果库.

原文链接:https://www.f2er.com/mssql/84069.html

猜你在找的MsSQL相关文章