gpt4 book ai didi

LINQ 在类项目上不同?

转载 作者:行者123 更新时间:2023-12-04 07:00:37 25 4
gpt4 key购买 nike

注意这个问题是类似的 this one除了我不使用 linq-to-sql,所以“让”不可用。

基本上我有一个选择类型

... .Select(c => new SampleClass { Id = c.Location.Name, Name = c.Location.Name }).Distinct().ToList()

当我刚刚拥有时,它曾经工作过
... .Select(c => c.Location.Name).Distinct().ToList()

我将如何对 SampleClass 中的一项进行不同的调用?

最佳答案

您可以按键对项目进行分组,然后从组中选择要用作值的项目。我用 FirstOrDefault举个例子:

... .Select(c => new SampleClass { Id = c.Location.Name, Name = c.Location.Name })
.GroupBy(c => c.Id)
.Select(group => group.FirstOrDefault())
.ToList()

关于LINQ 在类项目上不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1930654/

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