1

我用这个签名构建了一个 MVC Html 助手:

  public static MvcHtmlString EditFieldFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object additionalViewData = null)

我正在尝试构建另一个帮助器来反映对象的属性,然后为每个反映的属性调用 EditFieldFor。但正如您所见,该方法需要一个表达式。

如何将 PropertyInfo 转换为表达式?

4

1 回答 1

2

这个答案告诉我该怎么做。这是我所做的:

foreach (var propertyInfo in editFields)
{
    var expParam = Expression.Parameter(typeof(TModel)); // TModel is a generic parameter on this method
    var expProp = Expression.Property(expParam, propertyInfo);
    var expression = Expression.Lambda(expProp, expParam);

    var fieldHtml = (MvcHtmlString)typeof (HtmlHelpers)
        .GetMethod("EditFieldFor")
        .MakeGenericMethod(typeof (TModel), propertyInfo.PropertyType)
        .Invoke(null, new object[] {html, expression, null});

    editFormHtml.Append(fieldHtml);
}
于 2012-06-11T21:29:49.613 回答