标签:
今天遇到一个错误,记录一下,以备以后用到。
System.NotSupportedException: LINQ to Entities 不识别方法“System.DateTime AddMinutes(Double)”,因此该方法无法转换为存储表达式。
导致错误的代码是这一句
其中在代码中使用了AddMinutes方法,不能被识别,解决办法,
在使用时调用一下Compile()方法转换一下即可。
AsNoTracking()方法是阻止EF的默认缓存机制,在System.Data.Entity命名空间下
标签:
原文地址:http://www.cnblogs.com/oucuicui/p/4564116.html