其他分享
首页 > 其他分享> > 日常问题-LastOrDefault异常

日常问题-LastOrDefault异常

作者:互联网

EF使用LastOrDefault能够正常运行

return _dbContext.tests
  .Where(x => x.test_id == ID)
  .Select(x=>x.test_state)
  .LastOrDefault();

执行时遇到错误,

   "ExceptionMessage": "LINQ to Entities does not recognize the method 'Int32 LastOrDefault[Int32](System.Linq.IQueryable`1[System.Int32])' method, and this method cannot be translated into a store expression.",

但是切换FirstOrDefault却能正常执行,经过查找资料,最后找到相似问题的解决方法

https://www.cnblogs.com/thinkingagain/p/efcore_seek_lastordefault.html

并在阅读

https://docs.microsoft.com/zh-cn/dotnet/framework/data/adonet/ef/language-reference/supported-and-unsupported-linq-methods-linq-to-entities

了解到LINQ to Entities查询中不支持许多 LINQ 分页方法,其中就包括LastOrDefault方法, 使用.ToArray()先将实体类查询转为Enumerable类型,再使用LastOrDefault.

return _dbContext.tests
  .Where(x => x.test_id == ID)
  .Select(x=>x.test_state)
  .ToArray()
  .LastOrDefault();

但是目前对原理一知半解.

待学习: Enumerable类相关知识, ToArray()相关知识 ,只有ToArray()能转换为Enumerable类么?

标签:ToArray,Int32,LINQ,日常,test,异常,method,LastOrDefault
来源: https://www.cnblogs.com/Dragon-Li/p/15210762.html