次のコードがあります。
public void SalesCount(string customerId)
{
..
..
return ...;
}
var resultQuery = dataContext.Customers
.Where (c => c.Name == "Alugili")
.Where (c => SalesCount(c.CustomerId) < 100);
resultQuery を実行すると、SQL 例外への変換が発生します。
この問題の回避策はありますか?