I'm trying to return a new column that is the concatenation of ...id... and ...name..., with a hyphen inbeween, using dynamic-linq:...query.Select("new(id, name, id & " - " & name As idName")
...But, I'm failing even to get simple concatenation working, e...