gpt4 book ai didi

c# - Linq 包含不工作

转载 作者:太空狗 更新时间:2023-10-30 00:10:20 26 4
gpt4 key购买 nike

我正在使用以下代码来过滤包含字符串 pre 的列表。我错过了什么?这是代码

string pre = "a";
List<string> A = new List<string>();
List<string> B = new List<string>();
DAL dal = new DAL();
A = dal.GetNames();
B = (from x in A
where A.Contains(pre)
select x).ToList();
B = A.Where(c => A.Contains(pre)).ToList();

B 在这里总是变空(在这两种情况下)。

最佳答案

我猜你想做的是找到列表中包含单词 pre 的所有项目?在那种情况下,应该改变这个:

B = (from x in A
where A.Contains(pre)
select x).ToList();

进入

B = (from x in A
where x.Contains(pre)
select x).ToList();

当列表中存在完全匹配的 pre 时,您的 Linq 查询仅返回非空结果

关于c# - Linq 包含不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27675474/

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