LINQ to Entities does not recognize the method , and this method cannot be translated into a store e

Posted cxxtreasure

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LINQ to Entities does not recognize the method , and this method cannot be translated into a store e相关的知识,希望对你有一定的参考价值。

根据用户输入的起始日期,查询以起始日期开始的前20条记录,在ASP.NET MVC的Controller代码中这样写:

            var Logs = db.Log.Take(20);
       if (!string.IsNullOrEmpty(dateBegin)) { Logs = Logs.Where(a => a.Date >= Convert.ToDateTime(dateBegin)).Take(20); }

运行后,出现下面错误信息:

技术图片

对于这种情况,要清楚:本表达式只是LINQ to Entities,而不是真正的C#语言,虽然上述代码在编译是没有错误,但运行时,转换为SQL就产生了错误,无法转换为存储表达式。

解决办法是:将用户输入的起始日期的转换提前一步,使用真正的C#代码完成,然后将转换后的变量代入到LINQ表达式内,修改后的代码可以这样:

            var Logs = db.Log.Take(20);
       if (!string.IsNullOrEmpty(dateBegin)) { DateTime dateB = Convert.ToDateTime(dateBegin); Logs = Logs.Where(a => a.Date >= dateB).Take(20); }

可以看到,首先将转换后的日期存入变量dateB内,然后再使用LINQ调用,不在LINQ中直接使用方法。

运行,正常。不再出现错误信息。

以上是关于LINQ to Entities does not recognize the method , and this method cannot be translated into a store e的主要内容,如果未能解决你的问题,请参考以下文章

LINQ to Entities does not recognize the method , and this method cannot be translated into a store e

LINQ to Entities 中的“NOT IN”子句

typeorm:migration create on New Project Does Not Recognize Entities - “未发现数据库架构更改 - 无法生成迁移。”

为啥 LINQ-to-Entities 将此查询放在子选择中?

Linq-to-Entities:带有 WHERE 子句和投影的 LEFT OUTER JOIN

如果存在-UPDATE-else-INSERT 与 Linq-to-Entities?