解决LINQ to Entities does not recognize the method 'System.String Encrypt(System.String)' method, and this method cannot be translated
问题描述:
今天在使用EF对数据进行查询的时候,运行时报错,代码如下所示:
var retUser = SysOperatorBll.GetEntity(m => m.Account == model.Account && m.Pwd ==EndeHelper.Encrypt(model.Pwd));
注意该语句中的EndeHelper.Encrypt(model.Pwd)为加密密码并返回相应的加密字符串,原因就在此,首先我们应该知道,该操作是LINQ to Entities,而不是真正的C#语言,虽然能编译成功,但运行时,转换为SQL就产生了错误,无法转换为存储表达式。将该加密过程单独提一行即可,修正后的代码如下:
model.Pwd = EndeHelper.Encrypt(model.Pwd);
var retUser = SysOperatorBll.GetEntity(m => m.Account == model.Account && m.Pwd == model.Pwd);