I have a datatable with a column that has some duplicate values, I want to add those values to a listbox but without duplicates
I tried the following
Dim a = From row In table.AsEnumerable.Distinct.ToList Select row.Field(Of String)("name")
but it gives me duplicate values, How can it be done without duplicates?
 
     
     
     
     
    