gpt4 book ai didi

c# - 在 GroupBy 中连接字符串

转载 作者:行者123 更新时间:2023-11-30 12:29:45 25 4
gpt4 key购买 nike

我正在 IQueryable 上使用 Linq 执行 GroupBy。但我想对连接的字符串执行 GroupBy 。我现在拥有的是:

SomeList.GroupBy(x => x.Code + x.Location)

这对我有用,但是这也将 x.Code 更改为连接的字符串 x.Code + x.Location

有没有办法在 GroupBy 中临时连接变量,比如:

SomeList.GroupBy(x => (x.Code + x.Location) as TempVar)

最佳答案

按每个属性单独分组将产生与串联分组相同的结果

SomeList.GroupBy(x => new {x.Code, x.Location});

关于c# - 在 GroupBy 中连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17944399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com