有人可以解释构建一个表达式的语法,它将 OrderBy 实体上的用户指定属性吗?
这篇 MSDN 文章大有帮助,但它处理的是一个简单的字符串列表,我的数据集包含我自己的自定义对象。
有人可以解释构建一个表达式的语法,它将 OrderBy 实体上的用户指定属性吗?
这篇 MSDN 文章大有帮助,但它处理的是一个简单的字符串列表,我的数据集包含我自己的自定义对象。
先写代码,后解释。
IQueryable<T> data = this.Database.ObjectsOfType<T>();
var eachItem = Expression.Parameter(typeof(T), "item");
var propertyToOrderByExpression = Expression.Property(eachItem, propertyName);
var runMe = Expression.Call(
typeof(Queryable),
"OrderBy",
new Type[] { data.ElementType, typeof(IComparable) },
data.Expression,
Expression.Lambda<Func<T,IComparable>>(propertyToOrderByExpression, new ParameterExpression[] { eachItem }));
因此,首先我们将数据保存为 Queryable 对象。这有一种“根”表达式属性,我们需要它。
eachItem 事物是一个表达式,它表示 Lambda 中的参数占位符,如果您愿意,可以使用 go to 中的符号。
然后我们创建一个表达式,对用户在 propertyName 中指定的属性名称执行读取操作。
我们最终构建了一个表达式,它调用 Queryable 数据的 OrderBy 方法。我们说(按论证顺序):
Expression.Call(
[what's the type on which we want to call a method?],
[what's the name of the method we're calling?],
[if this method is generic, what are the types it deals with?],
{
[expression representing the data],
[expression for the lambda using the reader exp + each item exp]
})
最后两个在 { } 中,因为它实际上是一个参数数组。我使用 IComparable 是因为该属性可以是任何类型,但显然需要可比较才能订购。
卢克