使用 LINQ-to-objects 从集合创建 DataTable

发布于 2024-11-25 07:20:00 字数 214 浏览 0 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(1

遮了一弯 2024-12-02 07:20:00

之类的东西。

var aList = empList
             .Where((e) => e.phone != null)
             .Select((e) => new { firstname : e.firstname, lastname : e.lastname });  // etc

如果您确实需要行,您可以在选择中使用 new DataRow(...)

Something like

var aList = empList
             .Where((e) => e.phone != null)
             .Select((e) => new { firstname : e.firstname, lastname : e.lastname });  // etc

If you really need rows you can use new DataRow(...) in the select.

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