我想要第二个列表中的项目,它包含第一个列表中所有的项目

本文关键字:项目 列表 第一个 包含 第二个 我想要 | 更新日期: 2023-09-27 18:10:28

以下是我的代码看起来像的样子

List<Entity> lists = CacheManager.GetAllEntity();
List<long> firstLists = lists .Select <Entity,long>(x=>x.ID).ToList<long>();
List<Entity2> secondLists = CacheManager.GetAllEntity2();

其中Entity2看起来像:

public class Entity2
{
    public long ID;     
    public long EntitytID;
}

现在假设firstsLists包含{1,2,3,4}。第二个包含

ID   EntitytID
1    1 
1    2
1    3
1    4
2    1
2    4
3    1
4    2
5    4

那么我的输出应该给我

ID   EntitytID
1    1 
1    2
1    3
1    4

因为项目id 1具有所有值CCD_ 2。

我想要第二个列表中的项目,它包含第一个列表中所有的项目

怎么样:

var results = secondLists
    .GroupBy(z => z.ID)
    .Where(z => firstLists.All(z2 => z.Select(z3 => z3.EntitytID).Contains(z2)))
    .SelectMany(z => z);
var itemsGroupedById = SecondList.GroupBy(item => item.id, item => item).ToList();
var listToReturn = new List<Entity2>();
foreach(var group in itemsGroupedById)
{
    var id = group.Key;
    var entityIdsInThisGroup = group.Select(items => items.EntityId).ToList();
    var intersection = entityIdsInThisGroup.Intersect(FirstList).ToList();
    if(intersection.Count == FirstList.Count)
    {
        listToReturn.Add(group);
    }
}
return listToReturn;

这将执行以下操作-

  1. 将第二个列表中的所有项目按ID分组
  2. 在每个组中,它将与该组中的实体ID列表和第一个组中的ID列表相交
  3. 如果交叉点包含第一个列表中的所有元素,它会将组添加到您要返回的列表中