IQueryable的<>使用GetValue进行动态排序/过滤失败

时间:2011-01-06 03:49:18

标签: c# entity-framework

我正在尝试使用Entity Framework CTP5过滤数据库中的结果。这是我目前的方法。

IQueryable<Form> Forms = DataContext.CreateFormContext().Forms;
foreach(string header in Headers) {
    Forms = Forms.Where(f => f.GetType()
                              .GetProperty(header)
                              .GetValue(f, null)
                              .ToString()
                              .IndexOf(filter,
                                  StringComparison.InvariantCultureIgnoreCase) >= 0);
}

但是,我发现GetValue无法使用Entity Framework。如果类型为IEnumerable<>但不是IQueryable<>

,则会执行此操作

我可以用它来产生相同的效果吗?

1 个答案:

答案 0 :(得分:4)

public static IQueryable<T> Like<T>(this IQueryable<T> source, string propertyName, string keyword) {
    Type type = typeof(T);
    ParameterExpression parameter = Expression.Parameter(type, "param");
    MemberExpression memberAccess = Expression.MakeMemberAccess(parameter, type.GetProperty(propertyName));

    ConstantExpression constant = Expression.Constant("%" + keyword + "%");
    MethodInfo contains = memberAccess.Type.GetMethod("Contains");

    MethodCallExpression methodExp = Expression.Call(memberAccess, contains, Expression.Constant(keyword));
    Expression<Func<T, bool>> lambda = Expression.Lambda<Func<T, bool>>(methodExp, parameter);
    return source.Where(lambda);
}

你会这样称呼它

Forms = Forms.Like(header, filter);

我没有对传递的参数进行任何验证。例如,您必须验证您正在验证的属性类型上是否存在Contains方法。所以它不适用于int或类似的东西。