I am trying to have a column in my database where the string stored is:
'"Test count:" + @mycontroller.count()'
And then in my cshtml file do
<li>@Html.Raw(@MenuItem.ItemText)</li>
However, all I am getting displayed is the string in the database and not it the actual result from the controller count() function. How do I get that string to render/execute?