I\'ve been trying out the PagedList package to get paging for my index views. Everything was going well, and at the controller level everything is working fine, it only disp
As an alternate solution you could try:
@Html.DisplayNameFor(x => x.GetEnumerator().Current.ItemName)
It will work even if the list is empty!