我有以下型號:合併在列表中的項目,從不同的價值
class serverMaster
{
public string vm { get; set; }
public string bm { get; set; }
public string incrday { get; set; }
public string incrtime { get; set; }
public string fullday { get; set; }
public string fulltime { get; set; }
public string backupgroup { get; set; }
public serverMaster(string vm1, string bm1, string incrday1, string incrtime1, string fullday1, string fulltime1, string backupgroup1)
{
vm = vm1;
bm = bm1;
incrday = incrday1;
incrtime = incrtime1;
fullday = fullday1;
fulltime = fulltime1;
backupgroup = backupgroup1;
}
}
,我有一個數據集是這樣的:
我如何使用LINQ查找重複的第一列(例如合併Aether)並連接其他字段。
我會非常願意看到這樣的輸出:
我猜你需要看看它有.distinct功能 –
我的MoreLinq包認爲linq也有明顯的差異 –
.distinctBy就是我的意思。對不起,這是一個錯字 –