MVC视图:类型参数Html帮助器DisplayFor无法从使用中推断出来

时间:2012-03-01 14:10:49

标签: model-view-controller c#-4.0 lambda viewmodel html-helper

我正在尝试在此视图中使用扩展的HTML Helper DisplayFor:

<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MvcCms.Web.ViewModels.SubscriptionsViewModel>" %>

<% using (Html.BeginForm("TrainingSubscription", "Account", FormMethod.Post))
    { %>
 <%: Html.DisplayFor(m => m.Subscriptions) %>
 <input type="submit" value="Save" />
 <% } %>

使用以下ViewModel

namespace MvcCms.Web.ViewModels
{
    public class SubscriptionsViewModel
    {
        public string TrainingId { get; set; }
        public string Subject { get; set; }      
        public IEnumerable<SubscriptionViewModel> Subscriptions { get; set; }

        public SubscriptionsViewModel(string TrainingId, string Subject, IEnumerable<SubscriptionViewModel> Subscriptions)
        {
            this.TrainingId = TrainingId;
            this.Subject = Subject;
            this.Subscriptions = Subscriptions;
        }
    }

    public class SubscriptionViewModel
    {
        public string ContactId { get; set; }
        public string FullName { get; set; }
        public bool Subscribed { get; set; }

        public SubscriptionViewModel(string ContactId, string FullName, bool Subscribed)
        {
            this.ContactId = ContactId;
            this.FullName = FullName;
            this.Subscribed = Subscribed;
        }
    }
}

它给了我这个错误

  

方法的类型参数       'System.Web.Mvc.Html.DisplayExtensions.DisplayFor(System.Web.Mvc.HtmlHelper,System.Linq.Expressions.Expression&gt;)'       无法从使用中推断出来。尝试明确指定类型参数

我无法弄清楚什么是错的。请注意,我能够以强类型方式访问模型,并在视图中弹出IntelliSense。但是,当我输入lambda表达式时,IntelliSense不会弹出。

1 个答案:

答案 0 :(得分:4)

我现在正在使用它,问题是该项目仍然使用.NET v3.5而不是v4.0编译,请参阅:

https://stackoverflow.com/a/7142200/1232507