问题
Is it possible to create Expression<Func<TModel, bool>>()
which can be used in different htmlHelpers (for instance in CheckBoxFor()
), if I have a model object
this HtmlHelper<TModel> htmlHelper
and name of the property (through reflection).
回答1:
Sure:
static Expression<Func<TModel,TProperty>> CreateExpression<TModel,TProperty>(
string propertyName)
{
var param = Expression.Parameter(typeof(TModel), "x");
return Expression.Lambda<Func<TModel, TProperty>>(
Expression.PropertyOrField(param, propertyName), param);
}
then:
var lambda = CreateExpression<SomeModel, bool>("IsAlive");
来源:https://stackoverflow.com/questions/16217410/how-to-create-expressionfunctmodel-tproperty