I have a business object structured like this:
Country has States, State has Cities
So Country[2].States[7].Cities[5].Name
would be New York
Ok, I need to get a list of all the Country objects which have at least 1 City.IsNice == true
How do I get that?