作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想按 DESC 顺序对数据进行排序。这是我的代码:
var predicate = Predicates.Sort<myPoco>(x => x.name, false);
var result = GetList<myPoco>(predicate).ToList();
protected IEnumerable<T> GetList<T>(object predicate, IList<ISort> sort = null, IDbTransaction transaction = null, int? commandTimeout = null, bool buffered = false) where T : class
{
var result = connection.GetList<T>(predicate, sort, transaction, commandTimeout, buffered);
return
}
使用 Dapper Extensions,我无法对数据进行排序。上面的代码抛出以下错误:
PropertyName was not found for...
我正在使用 Dapper 扩展的 ClassMapper
映射 myPoco
属性。
最佳答案
您可以使用 Dapper Extension 中的 ISort
对数据进行排序。
List<ISort> sortList = new List<ISort>();
sortList.Add(Predicates.Sort<myPoco>(x => x.Name, false));
var result = GetList<myPoco>(null, sortList).ToList();
return result;
protected IEnumerable<T> GetList<T>(object predicate, IList<ISort> sort = null, IDbTransaction transaction = null, int? commandTimeout = null, bool buffered = false) where T : class
{
var result = connection.GetList<T>(predicate, sort, transaction, commandTimeout, buffered);
return result;
}
关于sorting - 如何在 dapper 扩展中使用 DESC 顺序根据 Order by 子句对数据进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42453114/
我是一名优秀的程序员,十分优秀!