I have the same problem too. I just used partial
but passed the model with it. partial doc
.CSHTML
@model EntityWithNestedLists
@foreach (var nested in @Model.NestedLists)
{
<partial name="Shared/_NestedList" model="@nested" />
}
Partial NestedList File:
@model Nested
<td colspan="2" class="text-center">
@Html.DisplayNameFor(m => m.Item)
</td>