公告
财富商城
积分规则
提问
发文
2019-02-11 09:03发布
Explosion°爆炸
This sound simple but it not that much.
I want to order a List based on one of the properties of T, which is double type.
var list = (from t in list orderby t.doubleVal).ToList();
I think this sould do the trick:
List<T> list = new List<T>(); //fill list here list.OrderBy(item => item.DoubleTypeProperty).ToList();
HTH
If you know the propertyname before compilation:
myList = myList.OrderBy(a=>a.propertyName).ToList();
or
myList = (from m in myList order by m.propertyName).ToList();
If you don't have the property at compile time (e.g. dynamic sorting in a grid or something); try the following extension methods:
static class OrderByExtender { public static IOrderedEnumerable<T> OrderBy<T>(this IEnumerable<T> collection, string key, string direction) { LambdaExpression sortLambda = BuildLambda<T>(key); if(direction.ToUpper() == "ASC") return collection.OrderBy((Func<T, object>)sortLambda.Compile()); else return collection.OrderByDescending((Func<T, object>)sortLambda.Compile()); } public static IOrderedEnumerable<T> ThenBy<T>(this IOrderedEnumerable<T> collection, string key, string direction) { LambdaExpression sortLambda = BuildLambda<T>(key); if (direction.ToUpper() == "ASC") return collection.ThenBy((Func<T, object>)sortLambda.Compile()); else return collection.ThenByDescending((Func<T, object>)sortLambda.Compile()); } private static LambdaExpression BuildLambda<T>(string key) { ParameterExpression TParameterExpression = Expression.Parameter(typeof(T), "p"); LambdaExpression sortLambda = Expression.Lambda(Expression.Convert(Expression.Property(TParameterExpression, key), typeof(object)), TParameterExpression); return sortLambda; } }
Then order like
myList = myList.OrderBy("propertyName", "ASC").ToList();
最多设置5个标签!
I think this sould do the trick:
HTH
If you know the propertyname before compilation:
or
If you don't have the property at compile time (e.g. dynamic sorting in a grid or something); try the following extension methods:
Then order like