如何从vb.net 2008中的数据表中删除多条记录而不是从本地表中的数据库中删除?
我在 vb.net 2008 中有数据表有 40000 行。我想从该数据表而不是数据库中删除 1000 行。 我想在不循环的情况下执行此操作 我知道remove和removeat,但两者都需要循环。 我有什么办法可以实现这个目标吗?
I have datatable in vb.net 2008 has 40000 rows. i want to delete 1000 rows from that datatable not from database.
i want to do this without looping
I know remove and removeat but both need looping.
is there any way i can achieve this thing ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 YourDataTable.Take(39000) 或 YourDataTable.Skip(1000)
或者是否有一个应该匹配的标准。使用 select , YourDataTable.Select(x => x.Something = "yourvalue")。但这也会循环集合。
You could use YourDataTable.Take(39000) or YourDataTable.Skip(1000)
Or if there is a critera that should match. Use select , YourDataTable.Select(x => x.Something = "yourvalue"). But this will also loop the collection.