gpt4 book ai didi

asp.net-mvc - ASP.NET MVC LINQ 查询

转载 作者:行者123 更新时间:2023-12-04 16:36:39 25 4
gpt4 key购买 nike

当我使用查询时

var NewMatchs = (from x in entity.matches select x).LastOrDefault();

我得到这样的错误

LINQ to Entities does not recognize the method 'SocialSports.Models.match LastOrDefaultmatch' method, and this method cannot be translated into a store expression.



我的代码有什么问题???

谢谢...

最佳答案

LastOrDefault Linq to Entities 不支持。您可以使用以下方法实现相同的效果:

var lastmatch = (from x in entity.matches select x)
// Assuming you have some kind of timestamp
.OrderByDescending(s => s.Date)
.FirstOrDefault();

关于asp.net-mvc - ASP.NET MVC LINQ 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4861212/

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