gpt4 book ai didi

c# - 如何根据 id 从列表中进行不同的选择?

转载 作者:行者123 更新时间:2023-12-02 21:54:11 24 4
gpt4 key购买 nike

我有以下列表,但我想要基于 catID 的不同行,我怎样才能实现这一点?

lst.AddRange(
(from xx in this.FreeInstructionItems
select new selectedCustomization()
{
TypeName = CategoryType.SpecialInstruction,
CategoryName = xx.InstructionInfo.CatName,
ItemName = xx.InstructionInfo.Description,
SourceID = xx.InstructionInfo.InstructionId,
CatID = xx.InstructionInfo.CatID,
Items = GetAllFreeItemNames(CategoryType.SpecialInstruction, xx.InstructionInfo.CatID)
}
).ToList()
);
return lst;

最佳答案

MoreLINQ而且 DistinctBy 比所有 GroupBy hack 都要好:

return lst.DistinctBy(x => x.CatID);

关于c# - 如何根据 id 从列表中进行不同的选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18056147/

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