从数据表中选择的列
如何从DataTable中获取选定的列?
例如,我的 BaseTable 有三列,
ColumnA、
ColumnB 和
ColumnC。
现在作为中间操作的一部分,我需要仅从 ColumnA 检索所有行。是否有类似DataTable.Select 的预定义公式?
How to get the Selected columns form the DataTable?
For e.g my BaseTable has three columns,
ColumnA,
ColumnB and
ColumnC.
Now as part of intermediate operations, I need to retrieve all the rows only from the ColumnA. Is there any predefined formula just like DataTable.Select?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DataView.ToTable 方法。
现在您可以选择。
DataView.ToTable Method.
Now you can select.
来自这个问题: 如何在数据表中选择不同的行并将其存储到数组中< /a> 你可以获得不同的值:
如果你正在处理一个大的DataTable并且关心性能,我会建议在.NET 2.0中使用类似下面的东西。我假设您显示的数据类型是字符串,因此请根据需要进行更改。
From this question: How to select distinct rows in a datatable and store into an array you can get the distinct values:
If you're dealing with a large DataTable and care about the performance, I would suggest something like the following in .NET 2.0. I'm assuming the type of the data you're displaying is a string so please change as necessary.