I am at very basic stage of asp.net MVC development. So sometimes I struggle with simple LINQ queries to work.
scenario-
I have A page that
Your cardComment property is a list of strings; it needs to be iterated in order to be displayed. Replace:
cardComment
@item.cardComment
with:
@foreach (var singleComment in Model.cardComment) { @singleComment }