1 回答
TA贡献1810条经验 获得超4个赞
如果将其表示为where子句,则可以使用LINQ to SQL开箱即用,如果可以构造适当的表达式。
就表达式树而言,可能有一种更好的方法-Marc Gravell可能会改进它-但值得一试。
static class Ext
{
public static IQueryable<TSource> Between<TSource, TKey>
(this IQueryable<TSource> source,
Expression<Func<TSource, TKey>> keySelector,
TKey low, TKey high) where TKey : IComparable<TKey>
{
Expression key = Expression.Invoke(keySelector,
keySelector.Parameters.ToArray());
Expression lowerBound = Expression.GreaterThanOrEqual
(key, Expression.Constant(low));
Expression upperBound = Expression.LessThanOrEqual
(key, Expression.Constant(high));
Expression and = Expression.AndAlso(lowerBound, upperBound);
Expression<Func<TSource, bool>> lambda =
Expression.Lambda<Func<TSource, bool>>(and, keySelector.Parameters);
return source.Where(lambda);
}
}
不过,这可能取决于所涉及的类型-特别是,我使用了比较运算符而不是IComparable<T>。我怀疑这更有可能正确地转换为SQL,但是您可以根据需要将其更改为使用该CompareTo方法。
像这样调用它:
var query = db.People.Between(person => person.Age, 18, 21);
- 1 回答
- 0 关注
- 351 浏览
添加回答
举报