qtvb1987 2019-08-30 15:36 采纳率: 12.5%
浏览 248

jqgrid linq 分页查询问题

比如我SortCode 字段为null 排序,返回数据总数对的,但是分页数据显示会有重复行,换个其他字段就分页数据显示就对的,不知道啥问题。

不像sql rownumber函数 order by 字段必需唯一不重复

jqgrid 前台页面通过 sortname: 'SortCode', sortorder: 'asc',

字段传到后台排序

底层方法
public IEnumerable FindList(Expression> condition, string orderField, bool isAsc, int pageSize, int pageIndex, out int total) where T : class,new()
{
using (var dbConnection = Connection)
{
string[] _orderField = orderField.Split(',');
var dataLinq = new SQLinq().Where(condition);

            foreach (string item in _orderField)
            {
                var parameter = Expression.Parameter(typeof(T), "t");
                var property = typeof(T).GetProperty(item);
                var propertyAccess = Expression.MakeMemberAccess(parameter, property);
                Expression<Func<T, object>> orderBy = t => propertyAccess;
                dataLinq.OrderByExpressions.Add(new SQLinq<T>.OrderByExpression { Ascending = isAsc, Expression = orderBy });
            }
            var dataQuery = dbConnection.Query<T>(dataLinq);
            total = dataQuery.Count();
            var data = dataQuery.Skip<T>(pageSize * (pageIndex - 1)).Take<T>(pageSize).AsQueryable();
            return data.ToList();
        }
    }
  • 写回答

1条回答 默认 最新

  • threenewbee 2019-08-30 16:33
    关注

    排序的字段本身是否有重复,将
    dataLinq = new SQLinq().Where(condition);
    写成dataLinq = new SQLinq().Where(condition).AsEnumerable();
    看看是不是可以

    评论

报告相同问题?

悬赏问题

  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!