Cannot iterate of a collection of Anonymous Types created from a LINQ Query in VB.NET
- by Atari2600
Ok everyone, I must be missing something here.
Every LINQ example I have seen for VB.NET anonymous types claims I can do something like this:
Dim Info As EnumerableRowCollection = pDataSet.Tables(0).AsEnumerable
Dim Infos = From a In Info _
Select New With {.Prop1 = a("Prop1"),…