联接 LINQ 中具有多个引用的 2 个表

本文关键字:引用 个表 LINQ 联接 | 更新日期: 2023-09-27 17:56:50

我有2个表,表1和表2。

**Table1**
Id      Name
------------
14443   Michael
55658   Brian
84321   Lisa
335896  NULL
1035    Maya
5221296 Brenda

**Table2**
Id1     Id2         MatchLevel
--------------------------
14443   5221296     0,5192
14443   84321       0,8647
14443   182347      0,6897
**1035  14443**     0,9999
14443   4572311     0,8569
63547   14443       0,9563
335896  14443       0,9418
14443   5221296     0,6942
**55658 5221296**   0,9928
55658   84321       0,8647
55658   182347      0,6897
1035    55658       0,6796
55658   4572311     0,8569
63547   55658       0,9563
335896  55658       0,9418
55658   5221296     0,6942

2 中的 Id1 和 Id2 是对表 1 中 Id 的引用

对于每个人(表1中的Id),我想选择表2中具有最高匹配级别的行,不包括名称为NULL 的人员。

上面的表应返回类似于以下内容的内容:

1035    14443       0,9999 (Michael)
55658   5221296     0,9928 (Brian)

LINQ 查询的外观如何?如果它不是 Lambda 表达式,我将不胜感激。

联接 LINQ 中具有多个引用的 2 个表

以下几行中的某处:

var query1 = 
    (from t1 in table1s
    join t2 in table2s on t1.Id equals t2.Id1
    where !string.IsNullOrEmpty(t1.Name)
    select new {t1.Name, t2.Id1, t2.Id2, t2.MatchLevel});
var query2 =
    (from t1 in table1s
    join t2 in table2s on t1.Id equals t2.Id2
    where !string.IsNullOrEmpty(t1.Name)
    select new {t1.Name, t2.Id1, t2.Id2, t2.MatchLevel});

var query = query1.Union(query2).GroupBy(x => x.Name)
    .Select(x => new 
    {
        Name = x.Key, 
        MatchLevel = x.Max(y => y.MatchLevel)
    });
这是

动态编写的,因为您不提供任何数据类,因此请原谅任何错误。我还考虑过空名称也会被删除,所以如果不正确,请更改查询中的检查:

var result = (from con in Table2
join name1 in Table1 on con.Id1 equals name1.Id
join name2 in Table1 on con.Id2 equals name2.Id
where !string.IsNullOrEmpty(name1.Name) && !string.IsNullOrEmpty(name2.Name)
group new {con.Id1, con.Id2, con.MatchLevel, name1.Name, name2.Name} by name2 into grp
select new {res = grp.OrderbyDescending(x=>x.MatchLevel).FirstOrDefault()})