winform组合框lambda表达式
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须在 IQueryable 上调用
ToList()
才能执行查询:You might have to call
ToList()
on the IQueryable to execute the query: