与 MIN 等效的 LINQ 是什么?
与 SQL MIN 函数等效的 C# LINQ 是什么?
我想将以下 SQL 转换为 LINQ:
Select MIN(dbo.Orders.OrderTimestamp) as MinimumTimeStamp From dbo.Orders;
谢谢
Joe
What is the C# LINQ equivalent to the SQL MIN function?
I would like to convert the following SQL to LINQ:
Select MIN(dbo.Orders.OrderTimestamp) as MinimumTimeStamp From dbo.Orders;
Thanks
Joe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个Min 函数。所以也许是这样的:
There's a Min function. So maybe something along the lines of:
这应该足够了:
刚刚注意到 Linq to SQL 标签 -
This should suffice:
Just noticed the Linq to SQL tag -
在集合上,您可以使用
.Min()
,它是System.Linq
命名空间中的扩展方法。如果 IntelliSense 未向您提供此信息,则您需要向文件添加
using System.Linq;
语句。On a collection, you can use
.Min()
which is an extension method in theSystem.Linq
namespace.If IntelliSense isn't providing this to you then you need to add a
using System.Linq;
statement to your file.