0
在我的.cshtml文件,我得到一個錯誤的地方我用@ Html.TextBoxForEmbeddedResourceVirtualPathProvider和@ Html.TextBoxFor(LINQ表達式)
這裏是一個示例代碼:
@model WebComposite.Models.CompositeModel
<label for="name">Name</label>
@Html.TextBoxFor(m => m.name)
錯誤:
Error #1:
'System.Web.Mvc.Html.InputExtensions.TextBoxFor<TModel,TProperty>(System.Web.Mvc.HtmlHelper<TModel>, System.Linq.Expressions.Expression<System.Func<TModel,TProperty>>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.
Error #2:
One or more types required to compile a dynamic expression cannot be found. Are you missing a reference?
有什麼想法嗎?
萬一別人