如何在EF core 3.0中启用客户端评估?

时间:2019-10-21 13:50:19

标签: ef-core-3.0

我知道启用客户端评估是错误的,但是无论如何我都希望启用它。 我想知道如何在ef core 3.0中做到这一点?

1 个答案:

答案 0 :(得分:0)

使用AsEnumerable在查询中明确切换到客户端评估。

var specialCustomers =
  context.Customers
    .Where(c => c.Name.StartsWith(n))
    .AsEnumerable() // switch to LINQ to Objects to client-eval the rest of the query
    .Where(c => IsSpecialCustomer(c));