过滤数据集
我有一个充满客户的数据集。我想知道是否有任何方法可以过滤数据集并仅获取我想要的信息。例如,要获取具有 CostumerID = 1
的客户的 CostumerName
和 CostumerAddress
是否可能?
I have a DataSet full of costumers. I was wondering if there is any way to filter the dataset and only get the information I want. For example, to get CostumerName
and CostumerAddress
for a costumer that has CostumerID = 1
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有提到合并吗?
No mention of Merge?
上面的内容非常接近。这是我的解决方案:
The above were really close. Here's my solution:
您可以使用
DataTable.Select
:或者您可以使用
DataView
:UPDATE 我不确定您为什么要返回DataSet。但我会采用以下解决方案:
You can use
DataTable.Select
:Or you can use
DataView
:UPDATE I'm not sure why you want to have a DataSet returned. But I'd go with the following solution: