gpt4 book ai didi

c# - 从数据库 Linq 获取最小值和最大值到 MVC 中的 Sql 查询?

转载 作者:太空宇宙 更新时间:2023-11-03 11:45:36 24 4
gpt4 key购买 nike

这是我在 Controller 中编写的查询

    public ActionResult Description()
{
var firstId = from p in obj.Cubisms
where p.Id = MIN(Id)
select p;
}

但是这里“MIN”或“Max”给出错误如果我错了应该查询什么

最佳答案

您可以使用 Enumerable函数做同样的事情,

  var min = obj.Cubisms.Min(r=> r.Id);
var max = obj.Cubisms.Max(r=> r.Id);

关于c# - 从数据库 Linq 获取最小值和最大值到 MVC 中的 Sql 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39056297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com