使用 LINQ 过滤数据表
考虑一个包含列的DataTable
:
RefID : string RefName : string RefDate : DateTime
DataTable 不包含任何主键。
我有另一个名为 ExcludeMe
的 List
。
我想过滤我的 DataTable
并排除在 ExcludeMe
列表中找到 RefId
列中的值的所有行。
如何使用 LINQ 实现此目的?
Consider a DataTable
which contains columns:
RefID : string RefName : string RefDate : DateTime
The DataTable does not contains any primary key.
I have another List<string>
named ExcludeMe
.
I would like to filter my DataTable
and exclude all of the rows where values in RefId
Column around found in the ExcludeMe
list.
How can I achieve this using LINQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
比如:
还没有尝试过。
something like:
Haven't tried to yet.
我还没有尝试过,但类似的东西应该有效。
I have not tried it but someting like this should work.