I have Country=>Ligue=>Team(Name, Score)
I need to select all team Name-Scores from a country.
something like this, does not work )
query = from ligue in myCountry.Ligues, from team in ligue.Teams select name = team.Name, score = team.Score distinct
EDIT:
VB.NET syntax is preferable.