I have the following inside of my view
@Html.DisplayFor(modelItem => item.FirstName)
I need to get the first initial of the First N
If you are only wanting to display the first character of item.FirstName why not do:
item.FirstName
@Html.DisplayFor(modelItem => item.FirstName.Substring(1,1))
You have it the wrong side of the closing bracket.