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?
любые идеи?