从 linq 中的数据行中选择两个数据列(vb.net 3.5)
Dim orders = From tt In testTable _
Order By tt.Item("OrderNumber") _
Select tt.Item("OrderNumber"), tt.Item("OrderId")
这正在打破。有办法做到这一点吗?我本以为这很容易。显然我想错了......
Dim orders = From tt In testTable _
Order By tt.Item("OrderNumber") _
Select tt.Item("OrderNumber"), tt.Item("OrderId")
This is breaking. Is there a way to do this? I would have thought it was easy enough. Obviously, I thought wrong....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我的 VB.NET 语法正确,
这将返回一个匿名类型,如果您想返回现有类型,请将
With
替换为该类型。If I got the VB.NET syntax right
This returns an anonymous type, if you want to return an existing type you replace
With
with that type.