簡體   English   中英

LINQ查詢按多個列表中的條件篩選項目

[英]LINQ Query to Filter Items By Criteria From Multiple Lists

我在使用LINQ概念化應該相當簡單的東西時遇到了麻煩。 我有一個集合,我想根據子對象的id值縮小或過濾。

我的主要收藏品包括一個斑點列表。 這就是現貨的樣子:

public class Spot
{
    public virtual int? ID { get; set; }
    public virtual string Name { get; set; }
    public virtual string Description { get; set; }
    public virtual string TheGood { get; set; }
    public virtual string TheBad { get; set; }
    public virtual IEnumerable<Season> Seasons { get; set; }
    public virtual IEnumerable<PhotographyType> PhotographyTypes { get; set; }
}

我正在嘗試按照攝影類型和季節過濾斑點列表。 我有一個關於PhotographyTypes和Seasons的id列表,每個都在int []數組中。 這些列表如下所示:

criteria.PhotographyTypeIds //an int[]
criteria.SeasonIds //an int[]

我想構建一個只包含Spots的集合,其子對象(id)與上面列表中的對象相匹配。 此功能的目標是按類型和季節過濾一組攝影點,並僅顯示匹配的那些。 任何建議將不勝感激。

謝謝大家的建議。 我最終解決了這個問題。 這不是我確定的最佳方式,但它現在正在運作。 因為這是一個搜索過濾器,所以有很多條件。

private List<Spot> FilterSpots(List<Spot> spots, SearchCriteriaModel criteria)
    {
        if (criteria.PhotographyTypeIds != null || criteria.SeasonIds != null)
        {
            List<Spot> filteredSpots = new List<Spot>();

            if (criteria.PhotographyTypeIds != null)
            {
                foreach (int id in criteria.PhotographyTypeIds)
                {
                    var matchingSpots = spots.Where(x => x.PhotographyTypes.Any(p => p.ID == id));
                    filteredSpots.AddRange(matchingSpots.ToList());
                }
            }

            if (criteria.SeasonIds != null)
            {
                foreach (int id in criteria.SeasonIds)
                {
                    if (filteredSpots.Count() > 0)
                    {
                        filteredSpots = filteredSpots.Where(x => x.Seasons.Any(p => p.ID == id)).ToList();
                    }
                    else
                    {
                        var matchingSpots = spots.Where(x => x.Seasons.Any(p => p.ID == id));
                        filteredSpots.AddRange(matchingSpots.ToList());
                    }
                }
            }
            return filteredSpots;
        }
        else
        {
            return spots;
        }
    }

這可以幫助您:

List<Spot> spots = new List<Spot>();
Spot s1 = new Spot();
s1.Seasons = new List<Season>() 
             { new Season() { ID = 1 }, 
               new Season() { ID = 2 }, 
               new Season() { ID = 3 } 
             };
s1.PhotographyTypes = new List<PhotographyType>() 
             { new PhotographyType() { ID = 1 }, 
               new PhotographyType() { ID = 2 } 
             };

Spot s2 = new Spot();
s2.Seasons = new List<Season>() 
             { new Season() { ID = 3 }, 
               new Season() { ID = 4 }, 
               new Season() { ID = 5 } 
             };
s2.PhotographyTypes = new List<PhotographyType>() 
             { new PhotographyType() { ID = 2 }, 
               new PhotographyType() { ID = 3 } 
             };

List<int> PhotographyTypeIds = new List<int>() { 1, 2};
List<int> SeasonIds = new List<int>() { 1, 2, 3, 4 };

spots.Add(s1);
spots.Add(s2);

然后:

var result = spots
             .Where(input => input.Seasons.All
                           (i => SeasonIds.Contains(i.ID)) 
                    && input.PhotographyTypes.All
                           (j =>  PhotographyTypeIds.Contains(j.ID))
                    ).ToList();
// it will return 1 value 

假設:

public class Season
{
    public int ID { get; set; }
    //some codes
}
public class PhotographyType
{
    public int ID { get; set; }
    //some codes
}

您有一個Contains擴展方法的ID數組,當ID在列表中時,該方法將返回true 與LINQ結合Where ,你會得到:

List<Spot> spots;   // List of spots
int[] seasonIDs;    // List of season IDs

var seasonSpots = from s in spots
                  where s.ID != null
                  where seasonIDs.Contains((int)s.ID)
                  select s;

然后,如果需要,您可以將返回的IEnumerable<Spot>轉換為列表:

var seasonSpotsList = seasonSpots.ToList();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM