Hello,
I€™m building my own code stage and I would like to use AsEnumerable method on DataTable, something like below:
Dim CustomerOrders = DtWithRecords.AsEnumerable().Select(Function(row) row.Field(Of Decimal)("ORDERNO")).Distinct()
Unfortunately, I'm receiving an error:
Public member "AsEnumerable" on type "DataTable" not found.
I referenced System.Data.DataSetExtensions.dll on Initialise Page.
What I'm doing wrongly here?