使用LINQ将两个列表放在C#中

时间:2013-10-15 07:18:45

标签: c# windows linq google-maps foreach

我是LINQ和编程的新手。我想要做的是将两个不同的列表放在一起,而不是使用两个foreache-loop,我想用Linq获取信息。 我要告诉你我的代码示例:

  Country c = CountriesHandler.GetCountry(startPage.SelectedCountry);
            if (globalSite)
            {
                List<Marker> markersForGlobal = new List<Marker>();
                foreach (var user in userList)
                {
                    Country ce = CountriesHandler.GetCountry(user.GetAttributeValue<string>("Country"));

                    foreach (var u in photoWithInfo)
                    {
                        if (user.ID == u.UserID)
                        {
                            int id = u.UserID;
                            string im = u.SquareThumbnailUrl;

                            markersForGlobal.Add(new Marker
                                   {
                                       Id = id,
                                       Image = im,
                                       Longitude = ce.Longitude,
                                       Latitude = ce.Latitude
                                   });
                            break;
                        }
                    }
                }

                return Json(markersForGlobal);
            }

所以这就是它的样子,现在它需要很多来自网站的“记忆”才能在谷歌地图上列出这一点,所以我想你可以用更好的解决方案做到这一点。 谢谢你的时间

3 个答案:

答案 0 :(得分:1)

您可以尝试的一种方法是使用类似于下面给出的LINQ查询。一个缺点是GetCountry被调用两次。

var result = from pwi in photoWithInfo
                     join user in userList on pwi.UserId equals user.UserId
                     select new Marker()
                     {
                         Id = user.UserId,
                         Image = pwi.SquareThumbnailUrl,
                         Longitude = CountriesHandler.GetCountry(user.GetAttributeValue<string>("Country")).Longitude,
                         Latitude = CountriesHandler.GetCountry(user.GetAttributeValue<string>("Country")).Latitude
                     };

答案 1 :(得分:0)

我不确定如何在您的示例中完成此操作,因为您使用第一个列表来获取需要进入其他列表的数据。我不知道GetCoutry的方法是什么,但如果它经常在DB上运行,或者你正在调用另一个服务,那么这可能是你的瓶颈。不是反复为每个用户执行操作,而是尝试通过一个呼叫为列表中的所有用户启用所有国家/地区。

答案 2 :(得分:0)

尝试这个linq,我认为它不会减少内存,但肯定会更优雅:)

var markers = new List<Marker>();

userList.ForEach(user =>
{
    var country = CountriesHandler
                    .GetCountry(user.GetAttributeValue<string> ("Country"));

    markers.AddRange(photoWithInfo.Where(info => user.Id == info.UserID)
        .Select(info => new Marker
            {
                Id = info.UserID,
                Image = info.SquareThumbnailUrl,
                Latitude = country.Latitude,
                Longitude = country.Longitude
             }));
    });