How can I call local method in Linq to Entities query?

后端 未结 4 1554
感动是毒
感动是毒 2020-12-10 14:51

I have the following code:

public void SalesCount(string customerId)
{
  ..
  ..
  return ...;
}

var resultQuery = dataContext.Customers
.Where (c => c.N         


        
4条回答
提交回复
热议问题