[C#] LINQ Group By


Feb 10, 2023

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#






你可能感興趣的文章

Frequently Used Linux Commands

Frequently Used Linux Commands

MTR04_1114

MTR04_1114

用 Node.js 快速打造 RESTful API

用 Node.js 快速打造 RESTful API






留言討論






2
2
2