0

以下是代码:

list = query.Where(x => ((string)x.GetType()
    .GetProperty(propertyName).GetValue(this, null))
        .EndsWith(filterValue)).ToList();

这段代码是一个重构的代码,如果我将它分解为它的对象和属性级别,我需要在我的代码项目中重复它一百次。根据我在这个站点的研究,它与 SQL 翻译有关。但是有什么办法可以解决这个代码或其变体可以正常工作的地方吗?

4

1 回答 1

3

解决方案是创建一个返回指定属性的表达式并将该表达式传递给Where

var query = session.Query<YourType>();
list = query.Where(GetExpression<YourType>(propertyName, filterValue)).ToList();

GetExpression看起来像这样:

public static Expression<Func<T, bool>> GetExpression<T>(string propertyName,
                                                  string filterValue)
{
    var parameter = Expression.Parameter(typeof(T));
    var property = Expression.Property(parameter, propertyName);
    var method = typeof(string).GetMethod("EndsWith", new [] { typeof(string) });
    var body = Expression.Call(property, method,
                               Expression.Constant(filterValue));
    return (Expression<Func<T, bool>>)Expression.Lambda(body, parameter);
}
于 2013-02-19T11:53:47.907 回答