在ASP.net Core中使用BeginCollectionItem

11

我在 asp.net core 中无法使用 Steve Anderson 的 BeginCollectionItem。 当我使用它时,我的部分视图会出现错误。

@using (Html.BeginCollectionItem("Entries")) 
{

}

类型“HtmlHelper”在一个未被引用的程序集中定义。您必须添加对程序集“System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35”的引用。

在ASP.net core中是否有实现BeginCollectionItem功能的替代方法?

1个回答

19

1
谢谢。我已经将该软件包添加到我的项目中,但仍然无法使用BeginItemCollection。在我的视图中仍然显示缺少引用。不确定应该如何使其工作 :/ - Daniel Jackson
2
DanielJackson 将以下行添加到 _ViewImports.cshtml 文件中: @using HtmlHelpers.BeginCollectionItemCore; - Segmentation Fault

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接