我知道启用客户端评估是错误的,但是无论如何我都希望启用它。 我想知道如何在ef core 3.0中做到这一点?
答案 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));