using the below expression to remove duplicates from table “ReportDT” on the basis on column “Issue Id” and
ReportDT.AsEnumerable().GroupBy(Function(i) i.Field(Of String)(“Issue Id”)).Select(Function(g) g.First).CopyToDataTable
getting the exception Unable to cast object of type ‘System.Double’ to type ‘System.String’
Can someone help ?