将 Lambda 与字典结合使用
我正在尝试使用 LINQ 从字典中检索一些数据。
var testDict = new Dictionary<int, string>();
testDict.Add(1, "Apple");
testDict.Add(2, "Cherry");
var q1 = from obj in testDict.Values.Where(p => p == "Apple");
var q2 = from obj in testDict.Where(p => p.Value == "Apple");
上述行 q1 和 q2 都会导致编译器错误。
error CS0742: A query body must end with a select clause or a group clause
如何使用 LINQ 在字典中查找值?
谢谢你,
瑞克
I am trying to use LINQ to retrieve some data from a dictionary.
var testDict = new Dictionary<int, string>();
testDict.Add(1, "Apple");
testDict.Add(2, "Cherry");
var q1 = from obj in testDict.Values.Where(p => p == "Apple");
var q2 = from obj in testDict.Where(p => p.Value == "Apple");
The above lines, q1 and q2, both result in a compiler error.
error CS0742: A query body must end with a select clause or a group clause
How do I go about using LINQ to find values in a dictionary?
Thank you,
Rick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
两者
任一
Either
or
您的语句中有一个多余的“from obj in”,这是不需要的。 删除它或将 .Where 更改为 linq 查询语法而不是方法语法。
you have an extra "from obj in" in your statements that isn't needed. Either remove that or change the .Where to the linq query syntax instead of the method syntax.