「Aggregate」を使用する必要があると思いますが、どうやら間違っています
まず、エンティティオブジェクトのリストを取得します
Dim employers As List(Of myEntity) = (New XXXX()).getZZZ(userName, userType)
次に、これがすべての名前を文字列に入れる方法になると思いました
Dim names as String = employers.Aggregate(Function(current, [next]) current.Name & " " & [next].Name)
しかし、「タイプ'ラムダ式'をパラメータータイプ'System.Func(Of myEntity、myEntity、myEntity......」に変換できません」というエラーが表示されます。
手がかりはありますか?