gpt4 book ai didi

linq - 使用 Linq 获取列表中对象的索引

转载 作者:行者123 更新时间:2023-12-03 07:22:18 25 4
gpt4 key购买 nike

我是 Linq 新手。我有一个客户表。ID、全名、组织、位置是列。我在 Sqlite 中有一个查询,返回 2500 条客户记录。我必须从这个结果集中找到 ID=150 的客户的索引。它是一个客户列表。查询的结果集按组织排序。我尝试使用 FindIndex 和 IndexOf 但前者出现错误,后者出现 -1 。那么,应该怎么做呢?谢谢。

最佳答案

您不需要使用LINQ ,您可以使用 FindIndex List<T> :

int index = customers.FindIndex(c => c.ID == 150);

关于linq - 使用 Linq 获取列表中对象的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18108778/

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