linq to entities doesn't recognize a method

前端 未结 4 627
感情败类
感情败类 2020-11-27 22:06

I have those methods:

   public int count(
        Guid companyId, Expression> isMatch)
    {
        var filters = new Expression&         


        
4条回答
  •  攒了一身酷
    2020-11-27 23:03

    I was dealing with similar problem. Working solution was using .AsEnumerable() before trying to use my custom method. You can take a look at it here.

提交回复
热议问题