如何使用过滤器从 C# 中的 DataTable 中删除行?
我有一个包含一些行的数据表,其中之一是 ID(字符串)和 System.DateTime。 其他行现在并不重要。
现在我想删除具有相同 ID 且旧日期时间为最新日期时间的所有行。
这可能吗?
这里有一个例子
- ID:123 Date:24.12.2010 ...
- ID:123 Date:23.12.2010 ...
- ID:123 Date:22.12.2010 ...
之后我只想要:
- ID:123 Date:24.12.2010 ...
i have a DataTable with some rows, one of it is a ID (a string) and a System.DateTime.
the other rows are not important now.
now i want to delete all the rows with the same ID that have an older DateTime as the newest.
is this possible?
here an example
- ID:123 Date:24.12.2010 ...
- ID:123 Date:23.12.2010 ...
- ID:123 Date:22.12.2010 ...
after this i only want:
- ID:123 Date:24.12.2010 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下一步尝试
Try next