我有一个表,有不同的字段,如
桌腿:
leg.city1 as string
我想查询一个数据库,并把这个字段从不同的记录在一个字符串
dim report = (From x In DataBase.legs
Select x.city1)aggregate(Function(p) p))
我知道我的代码是错误的
帮忙吗?
使用+
:
dim report = (From x In DataBase.legs
Select x.city1 + x.city2 + x.city3)