我可以在 LINQ where 表达式中使用数组吗?

发布于 2024-12-11 20:06:48 字数 76 浏览 0 评论 0原文

是否可以使用类似 .Where(u => u.License_ID == ID) 的 ID 为数组的内容?

Would it be possible to use something like .Where(u => u.License_ID == ID) with ID being an array?

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

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

发布评论

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

评论(2

乖乖兔^ω^ 2024-12-18 20:06:48

该代码

Where(u => IDs.Contains(u.License_ID))

可以工作,但这取决于您的数据库提供商是否支持。如果这不是数据库查询,而是 LINQ to 对象,那么它肯定可以工作。

The code

Where(u => IDs.Contains(u.License_ID))

could work, but it depends on your database provider whether it supports that. If this is not a database query, but LINQ to objects, it will certainly work.

要走就滚别墨迹 2024-12-18 20:06:48

如果数组包含自定义对象,您始终可以编写一个扩展方法,例如

Equals(this Array[] _Array)

And 并在其中定义相等性的要求。
那么你的代码就变成了:

.Where(u => u.License_ID.Equals(ID))

并且它将是高度可重用的 =)

If the array contains custom objects, you could always write an extension method like

Equals(this Array[] _Array)

And define in there what are the requirements for equality.
Then your code becomes:

.Where(u => u.License_ID.Equals(ID))

And it would be highly reusable =)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文