使用 LINQ-to-objects 从集合创建 DataTable
在我的 VB.NET 代码中,我有这样的内容: clsEmployees
的集合,由 clsEmployee
对象组成。
我需要一个 LINQ 语句,这样它会返回一个 DataTable,由 clsEmployee 的字段行组成,这些字段应该是名字、姓氏、员工 ID、电话、城市等。
此外,LINQ语句应仅返回电话不为空的那些行。
In my VB.NET code, I have something like this:
A collection of clsEmployees
, which is made up of clsEmployee
objects.
I would need a LINQ statement, such that it would return me a DataTable, made up of rows of fields of clsEmployee
, which are supposedly firstname, lastname, employeeID, phone, city etc.
Also, the LINQ statement should return only those rows where phone is not null.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
之类的东西。
如果您确实需要行,您可以在选择中使用 new DataRow(...)
Something like
If you really need rows you can use new DataRow(...) in the select.