5

我有两个类型的实例IEnumerable如下。

IEnumerable<Type1> type1 = ...;
IEnumerable<Type2> type2 = ...;

两者Type1Type2都包含一个名为 的成员common,因此即使它们属于不同的类,我们仍然可以像这样关联它们。

type1[0].common == type2[4].common

我试图过滤掉那些type1没有对应common值的元素,type2并根据每个元素的一个值创建一个字典。现在,我通过以下双循环来做到这一点。

Dictionary<String, String> intersection = ...;
foreach (Type1 t1 in type1)
  foreach(Type2 t2 in type2)
    if (t1.common == t2.common)
      intersection.Add(t1.Id, t2.Value);

现在,我已经尝试过使用 LINQ,但所有的,.Where只是让我头疼。有没有办法使用 LINQ 巧妙地执行相同的操作?.Select.ForEach

4

5 回答 5

15

当两个序列有共同点并且您想根据该共同点过滤它们的产品时,有效的查询是连接。假设Type1Customer并且Type2Order。每个客户都有一个CustomerID,每个订单也有一个CustomerID。那你可以这么说。

var query = from customer in customers
            join order in orders 
              on customer.CustomerId equals order.CustomerId
            select new { customer.Name, order.Product };

迭代将为您提供一系列对,其中包含每个有订单的客户名称及其所有产品。因此,如果顾客 Suzy 点了煎饼和比萨饼,顾客 Bob 点了牛排,那么您会得到这些对。

Suzy, pancake
Suzy, pizza
Bob, steak

相反,如果您希望将这些分组以便每个客户都有他们的订单列表,那就是组加入。

var query = from customer in customers
            join order in orders 
              on customer.CustomerId equals order.CustomerId 
              into products
            select new { customer.Name, products };

迭代为您提供配对,其中第一项是名称,第二项是一系列产品。

Suzy, { pancake, pizza }
Bob, { steak }
于 2013-02-09T03:43:08.583 回答
1

另一种选择是加入。我在下面做了一个快速控制台应用程序,但必须自己编写数据。希望我正确理解了你的问题。

public class Type1
{
    public string ID { get; set; }
    public Guid common { get; set; }
}
public class Type2
{
    public string Value { get; set; }
    public Guid common { get; set; }
}

class Program
{
    static void Main(string[] args)
    {
        Guid CommonGuid = Guid.NewGuid();

        IEnumerable<Type1> EnumType1 = new List<Type1>()
        {
            new Type1() {
                ID = "first",
                common = CommonGuid
            },
            new Type1() {
                ID = "second",
                common = CommonGuid
            },
            new Type1() {
                ID = "third",
                common = Guid.NewGuid()
            }
        } as IEnumerable<Type1>;

        IEnumerable<Type2> EnumType2 = new List<Type2>()
        {
            new Type2() {
                Value = "value1",
                common = CommonGuid
            },
            new Type2() {
                Value = "value2",
                common = Guid.NewGuid()
            },
            new Type2() {
                Value = "value3",
                common = CommonGuid
            }
        } as IEnumerable<Type2>;

        //--The part that matters
        EnumType1                       //--First IEnumerable
            .Join(                      //--Command
                EnumType2,              //--Second IEnumerable
                outer => outer.common,  //--Key to join by from EnumType1
                inner => inner.common,  //--Key to join by from EnumType2
                (inner, outer) => new { ID = inner.ID, Value = outer.Value })  //--What to do with matching "rows"
            .ToList()   //--Not necessary, just used so that I can use the foreach below
            .ForEach(item =>
                {
                    Console.WriteLine("{0}: {1}", item.ID, item.Value);
                });

        Console.ReadKey();
    }
}

如下所示:
first: value1
first: value3
second: value1
second: value3

于 2013-02-09T02:17:26.803 回答
0

假设您仍希望将交集保留为Dictionary<string, string>

IEnumerable<Type1> list1;
IEnumerable<Type2> list2;

Dictionary<string, string> intersection = 
    (from item1 in list1
     from item2 in list2
     where item1.common = item2.common
     select new { Key = item1.Id, Value = item2.Value })
         .ToDictionary(x => x.Key, x => x.Value);
于 2013-02-09T03:23:18.927 回答
-1
type1.where(i=>type2.where(j=>j.common == i.common).Count > 0);

这应该会为您提供仅包含匹配项的列表。

于 2013-02-09T02:01:05.627 回答
-1

我错过了一些东西,但这会不会:

type1
 .where(t1 => type2.Any(t2 => t1.common == t2.common)
 .ToDictionary(t1 => t1.Id)

或者正如Servy建议的那样

type1
  .Join(type2, a => a.common, b => b.common, (a1,b1) => a1)
  .ToDictionary(t1 => t1.Id)
于 2013-02-09T03:28:20.183 回答