Supposing the referenced List
below contains 2 elements:
Dim Countries = From c In List _
Select New With { .Country = c.Country, .CountryID = c.CountryID }
the code above returns
.Country=Spain .CountryID = 1
.Country=Spain .CountryID = 1
How can i get the distinct values? The Countries
query should contain only
.Country=Spain .CountryID = 1
Distinct must know somehow which objects are the same. You select anonymus objects here, it doesn't know which are equal. I never wrote a single line of VB.Net, but I tried something, and it works:
In your case:
This works for me when I stop on the last line in the debugger:
There is the LINQ operator named Distinct(), which you can call like so:
More information on Distinct here
I can only assume you're dead set on the use of anonymous type as the answer given by Alex Peck is correct. (and I've upvoted it).
However, this boils down to a VB.NET vs C# compiler discussion.
In VB.NET, when an anonymous type is encountered only those properties declared as key properties can be used for comparison purposes. So in VB.NET without key, when you're attempting to do a distinct comparison, nothing will occur.
Read all about it here.
So first, to answer your question, this works with anonymous types:
This is why freedompeace's answer doesn't quite work.
C# however the compiler is a little different.
When an anonymous type is encountered and a comparison operation is needed the c# compiler overrides Equals and GetHashCode. It will iterate over all of the public properties of the anonymous type to compute the object's hash code to test for equality.
And you can read more about that here.
Hope this answers your question.