Search code examples
c#asp.net-mvc

Html.BeginCollectionItem("Gifts")) { } Does not exist


Can any one please help me .

@model LioM.Models.Gift
@using (Html.BeginCollectionItem("Gifts"))
{

}

this is my MVC5 partial view. It shows an error does not contain a definition for BeginCollectionItem


Solution

  • Install BeginCollectionItem HtmlHelper from nuget:

    PM> Install-Package BeginCollectionItem

    And make sure it's Namespace is in your view:

    @using HtmlHelpers.BeginCollectionItem