我可以在 LINQ where 表达式中使用数组吗?
是否可以使用类似 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该代码
可以工作,但这取决于您的数据库提供商是否支持。如果这不是数据库查询,而是 LINQ to 对象,那么它肯定可以工作。
The code
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.
如果数组包含自定义对象,您始终可以编写一个扩展方法,例如
And 并在其中定义相等性的要求。
那么你的代码就变成了:
并且它将是高度可重用的 =)
If the array contains custom objects, you could always write an extension method like
And define in there what are the requirements for equality.
Then your code becomes:
And it would be highly reusable =)