Dim placesOfServces = From x In tbl_pos _
Where x.active = True _
Select x.pos_id, x.pos_code & " - " & x.pos_desc
出现错误
范围变量名称只能从不带参数的简单名称或限定名称中推断出来。
问题,需要返回一个串联的x.pos_code
and字符串x.pos_desc
。帮助必须在 VB.NET 中。