我正在使用LinqKit,我想编写一个谓词,其中代码必须调用一个普通的布尔方法,如下所示:
var predicate = PredicateBuilder.False<MyEntity>();
var predicate = predicate.And(myEntity => this.EntityMatches(myEntity));
this.ObjectSet.AsExpandable().Where(predicate).ToList();
这是EntityMatches方法的(部分) :
private bool EntityMatches(MyEntity myEntity)
{
bool isMatch;
// I make a call to another library boolean method here.
isMatch = otherLib.IsEntityMatch(myEntity);
// I perform some other checks right after.
isMatch &= // some other conditions ...
return isMatch;
}
运行延迟执行时出现此异常:
LINQ to Entities 无法识别方法 'Boolean EntityMatches(MyEntity)' 方法,并且此方法无法转换为存储表达式。
如何重写 EntityMatches 方法以便商店提供者可以理解?