Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 350 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 350 Bytes

BeginCollectionItemCore

Usage

@using HtmlHelpers.BeginCollectionItemCore;
@model BeginCollectionItemCoreDemo.ViewModels.OrderItemModel


@using (Html.BeginCollectionItem("orderItems"))
{
    @Html.LabelFor(x => x.Title);
    @Html.EditorFor(x => x.Title);
    @Html.LabelFor(x => x.Quantity);
    @Html.EditorFor(x => x.Quantity);
}