[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#






你可能感興趣的文章

v-bind 動態屬性指令

v-bind 動態屬性指令

[JavaScript ] ES7, ES8, ES10 有趣的 new features

[JavaScript ] ES7, ES8, ES10 有趣的 new features

學習 DNS, CDN, Cloudflare

學習 DNS, CDN, Cloudflare






留言討論






2
2
2