gpt4 book ai didi

c# - 如何根据字段 Entity Framework 4.1 的最大值选择行(对象)

转载 作者:太空狗 更新时间:2023-10-29 20:05:41 25 4
gpt4 key购买 nike

我正在尝试根据 RollNumber 的最大值获取一行(对象),这是一个长 Datatype 字段。我希望它返回一个空对象,以防万一没有任何对象,所以我使用了 SingleorDefault。但我的查询似乎全错了(这里的 linq 正在进行中)。这是查询:

SchoolContextExpress db = new SchoolContextExpress();
Profile profile = db.Profiles.Where(p => p.RollNumber == db.Profiles.Max(r=>r.RollNumber)).SingleOrDefault();

感谢阅读本文。

最佳答案

使用空的 RollNumber...

Profile profile = db.Profiles.Where(p => p.RollNumber !=0 &&  p.RollNumber == db.Profiles.Max(r=>r.RollNumber)).SingleOrDefault();

或者你可能想考虑...

Profile profile = db.Profiles.Where(p => p.RollNumber == db.Profiles.Where(p1 => p1.RollNumber != 0).Max(r=>r.RollNumber)).SingleOrDefault();

关于c# - 如何根据字段 Entity Framework 4.1 的最大值选择行(对象),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9497399/

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