LINQ Query with 3 levels
        Posted  
        
            by BahaiResearch.com
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by BahaiResearch.com
        
        
        
        Published on 2010-05-09T17:06:56Z
        Indexed on 
            2010/05/09
            17:38 UTC
        
        
        Read the original article
        Hit count: 150
        
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?
© Stack Overflow or respective owner