This question is locked. New answers and comments are not allowed.
So I hope to be able to do something like:
IN data keys, like:
Is there something like this possible?
I need to do this because my 'lid' is a complex object, I need to somehow return its string value. I tried .ToString() and got an error that it could not be null.
Thanks!
columns.Bound(x => x.ID).Template( @<text> @item.ID.ToString() </text>);IN data keys, like:
keys.Add(@<text> @item.lId.ToString() </text> ).RouteKey("lId");Is there something like this possible?
I need to do this because my 'lid' is a complex object, I need to somehow return its string value. I tried .ToString() and got an error that it could not be null.
Thanks!