winform组合框lambda表达式

发布于 2024-09-24 19:07:26 字数 405 浏览 2 评论 0原文

我在 vs 2010 中有一个使用 vb.net 的组合框。我想做的是使用 ilist 来驱动组合框。我可以正常工作,但是当我尝试使用 lambda 表达式订购组合框时,组合框中没有显示任何内容。

  With Me.cbAgency
        .DataSource = Os.OrderBy(Function(o) o.Agency)
        .DisplayMember = "Agency"
        .Tag = Os
        .SelectedIndex = Nothing
    End With

取出 OrderBy(Function(o) o.Agency) 就可以了。我以前在 asp.net 中使用过这种语法,它似乎有效......只是想知道有什么不同或者我做错了什么。 谢谢

I have a combobox in vs 2010 using vb.net. What i'd like to do is use a ilist to drive a combobox. I have this working but when i try to order the combobox using a lambda expression, nothing shows up in the combobox.

  With Me.cbAgency
        .DataSource = Os.OrderBy(Function(o) o.Agency)
        .DisplayMember = "Agency"
        .Tag = Os
        .SelectedIndex = Nothing
    End With

Take out the OrderBy(Function(o) o.Agency) and it works. I've used this syntax before in asp.net and it seems to work.. just wondering what is different or what i've done wrong.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

乖乖公主 2024-10-01 19:07:26

您可能必须在 IQueryable 上调用 ToList() 才能执行查询:

.DataSource = Os.OrderBy(Function(o) o.Agency).ToList()

You might have to call ToList() on the IQueryable to execute the query:

.DataSource = Os.OrderBy(Function(o) o.Agency).ToList()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文