将 Lambda 与字典结合使用

发布于 2024-07-26 08:27:41 字数 503 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

童话 2024-08-02 08:27:41

两者

var q1 = from obj in testDict.Values where obj == "Apple" select obj;

任一

var q1 = testDict.Where(p => p.Value == "Apple");

Either

var q1 = from obj in testDict.Values where obj == "Apple" select obj;

or

var q1 = testDict.Where(p => p.Value == "Apple");
韵柒 2024-08-02 08:27:41

您的语句中有一个多余的“from obj in”,这是不需要的。 删除它或将 .Where 更改为 linq 查询语法而不是方法语法。

var q1 = from obj in testDict.Values
         where obj.Value == "Apple"
         select obj;    
var q2 = testDict
         .Where(p => p.Value == "Apple");

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.

var q1 = from obj in testDict.Values
         where obj.Value == "Apple"
         select obj;    
var q2 = testDict
         .Where(p => p.Value == "Apple");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文