Linq 在数组上使用 Contains

发布于 2024-12-08 19:01:19 字数 102 浏览 0 评论 0 原文

我尝试使用 linq 查询数据表,理想情况下我想做的是将一列字符串与一个字符串数组进行比较,返回匹配的字符串。

有什么想法吗?

提前欢呼

CM

Im trying to query a datatable using linq, ideally what I would like to do is compare a column of strings to an array of strings, returning those that match.

Any ideas?

Cheers in advance

CM

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冰火雁神 2024-12-15 19:01:19

您需要使用 Field 方法之一="nofollow">DataRowExtensions

var foo = from r in dt.AsEnumerable()
          where bar.Contains(r.Field<string>("barColumn"))
          select r;

You need to use one of the Field<T> methods of DataRowExtensions.

var foo = from r in dt.AsEnumerable()
          where bar.Contains(r.Field<string>("barColumn"))
          select r;
苦行僧 2024-12-15 19:01:19
myDB.Where(x=> array.Contains(x));
myDB.Where(x=> array.Contains(x));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文