运行以下代码时出现错误Unable to cast object of type 'System.Linq.Expressions.FieldExpression' to type 'System.Linq.Expressions.LambdaExpression'
。
此代码的目的是允许我为包含特定字符串的记录筛选记录(Entity Framework Code First / Linq to SQL)。
注意:我正在使用第三方库LinqKit:http://www.albahari.com/nutshell/predicatebuilder.aspx
FilterHelper<Country> helper = new FilterHelper<Country>();
helper.AddContains(searchAlpha2, c => c.Alpha2);
helper.AddContains(searchAlpha3, c => c.Alpha3);
helper.AddContains(searchName, c => c.Name);
IQueryable<Country> countries = db.Countries.AsExpandable().Where(helper.Predicate);
...
public class FilterHelper<T>
{
public delegate string GetColumn<T>(T item);
private Expression<Func<T,bool>> predicate;
public FilterHelper()
{
this.predicate = PredicateBuilder.True<T>();
}
public void AddContains(string searchText, GetColumn<T> getColumn)
{
if (!string.IsNullOrWhiteSpace(searchText))
predicate = predicate.And(c => getColumn(c) != null ? getColumn(c).Contains(searchText) : false);
}
public Expression<Func<T,bool>> Predicate
{
get { return this.predicate; }
}
}
有关如何重写此内容以避免上述错误的任何建议?
注意:CodeReview上的代码也是我与重构相关的原始问题。 https://codereview.stackexchange.com/questions/54888/refactor-c-linq-code-to-reduce-duplication
答案 0 :(得分:1)
FieldExpression不是LambdaExpression。你可以将一个作为表达式的主体。在调试器中,您可以尝试以下方法来探索LambdaExpression的结构:
Expression<Func<U,T>> f = t => t.FieldName;
然后在调试器中,查看f,其类型为LambdaExpression,以及LambdaExpression的Body,即Field Expression。