“使用标准帮助程序的自定义帮助程序”中的“使用中无法推断出类型参数”

时间:2012-10-30 12:26:48

标签: c# asp.net-mvc-3 razor helper inference

我有一些MVC3网站的表格,有很多重复的部分。所以我试着为此做一个帮手。按照互联网的示例形式我做了这个:

using System;
using System.Linq.Expressions;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Web.Routing;

namespace Nop.Web.Themes.MyTheme.Extensions
{
    public static class FormLineHelper
    {
        public static MvcHtmlString FormLine<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper,
                                                                    Expression<Func<TModel, TProperty[]>> expression,
                                                                    object htmlAttributes = null)
        {
            TagBuilder tag = new TagBuilder("tr");
            tag.MergeAttributes(new RouteValueDictionary(htmlAttributes), true);
            var member = (MemberExpression)expression.Body;
            string propertyName = member.Member.Name;

            tag.InnerHtml += String.Format("<td class='label'>{0}</label></td><td class='field'>{1}</td><td class='padding'>{2}</td>",
               htmlHelper.LabelFor(expression), htmlHelper.EditorFor(expression), htmlHelper.ValidationMessageFor(expression));

            return MvcHtmlString.Create(tag.ToString());
        }
    }
}

这个编译得很好。但是当我做的时候

@model Nop.Plugin.MyPlugin.Models.ViewModel

@{
    Layout = "../Shared/_Root.cshtml";
}

<div class="form">
<div class="form-top"></div>
<div class="form-center">

@using (Html.BeginForm(null, null, FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <table>
    @Html.FormLine(model => model.FirstName)
   </table>
}
</div>
<div class="form-bottom"></div>
</div>

我确保web.config包含

<compilation debug="true" targetFramework="4.0">

我得到“无法从使用中推断出类型参数”错误。使用similair的另一个助手,但不使用标准助手工作正常。我也试过这个:

@{ Html.FormLine<ViewModel, string>(model => model.FirstName); }

这给出了错误“无法将类型'字符串'隐式转换为'string []'”。

我见过similair问题,但我找不到答案。我做错了什么?

1 个答案:

答案 0 :(得分:1)

为什么要获得属性数组?

如何更改此行:

Expression<Func<TModel, TProperty[]>> expression,

Expression<Func<TModel, TProperty>> expression,