I am trying to use the example above:
columns.Template(@<text></text>).ClientTemplate(
"<a href='"
+Url.Action(
"Edit"
,
"Home"
)+
"/#=PersonID#'>Edit</a>"
);
but keep on receiving the following error whenever I have @<text></text>
"Cannot convert lambda expression to type 'string' because it is not a delegate type"
Why is it that I cannot use @<text> in my Razor code to explicitly define this content?