Linq查询 - 在另一个列表中列出

mee*_*shi 5 c# linq

我正在尝试在另一个(提供)列表中选择至少有一个城市名称的国家/地区.很抱歉很难解释,请参阅下面的代码:

当我调用GetListOfCountires时,它应该返回NZ和CN.我也想用Linq而不是foreach.

    private static List<Country> Countries = new List<Country>(); 
    private static void Main()
    {
        var city1 = new City {Name = "Auckland"};
        var city2 = new City { Name = "Wellington" };
        var city3 = new City { Name = "Perth" };
        var city4 = new City { Name = "Sydney" };
        var city5 = new City { Name = "Beijing" };
        var country1 = new Country {Name = "NZ", Cities = new List<City> {city1, city2}};
        var country2 = new Country { Name = "AU", Cities = new List<City> { city3, city4 } };
        var country3 = new Country { Name = "CN", Cities = new List<City> { city5 } };
        Countries.Add(country1);
        Countries.Add(country2);
        Countries.Add(country3);
        List<String> cityNames = new List<string>{"Auckland", "Beijing"};
        var countries = GetListOfCountires(cityNames); // this should return NZ, and CN
    }

    public class Country
    {
        public string Name;
        public List<City> Cities = new List<City>();
    }

    public class City
    {
        public string Name;
    }

    public static List<Country> GetListOfCountires(List<String> cityNames)
    {
        List<Country> result = new List<Country>();
        foreach (var cityName in cityNames)
        {
            result.Add(Countries.Where(x=>x.Cities.Contains(cityName))); // error???
        }
        return result;
    }
Run Code Online (Sandbox Code Playgroud)

谢谢

Gra*_*ICA 7

在城市名称列表和每个国家/地区的城市列表之间执行交集,仅返回存在此类交叉点的国家/地区.

var countries = Countries.Where(x => x.Cities.Intersect(cityNames).Any());
Run Code Online (Sandbox Code Playgroud)


Lui*_*iso 5

您需要做什么才能让Any他们所在城市的国家/地区cityNames列入清单

public static List<Country> GetListOfCountires(List<String> cityNames)
{
    return Countries
           .Where(country => country.Cities.Any(city => cityNames.Contains(city.Name))
           .ToList()

}
Run Code Online (Sandbox Code Playgroud)