【EntityFramework CodeFirst 】错误解析:LINQ to Entities does not recognize the method Guid Parse

  • Post author:
  • Post category:其他


错误信息:

System.NotSupportedException:“LINQ to Entities does not recognize the method ‘System.Guid Parse(System.String)’ method, and this method cannot be translated into a store expression.”

Linq to Entities 不支持 Guid.Parse() 方法

原因分析:

在Linq语句中使用 Guid.Parse() 方法,该方法暂不被 Linq to Entity 支持。

解决办法:

删除该方法的使用。尝试直接使用字符串,或改变字符串类型属性为GUID类型。



版权声明:本文为itisauto2008原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。