[C#] LINQ Group By


In some scenarios, we would like to select each first one row
of the group which we group by personId.

The following code block is a simple example.

var memberList =
    memberSourceData.GroupBy(item => item.personId)
        .Select(chunck => chunck
            .OrderByDescending(c => c.Id)
            .First())
        .ToList();
#C#






你可能感興趣的文章

4 - 非同步之認識 async/await

4 - 非同步之認識 async/await

關於 Slot 元件插槽

關於 Slot 元件插槽

使用 Terraform 在 GCP 上建立外部和內部的全球 IP 地址

使用 Terraform 在 GCP 上建立外部和內部的全球 IP 地址






留言討論