I am using Rob's implementation of LazyList and it is working great.
However, I am not able to get a .where clause working on a child entity of the type LazyList.
For eg. something like
var qry = orderRepository.GetOrders();
qry = from p in qry where p.Items.Where(t => t.Name == "test") select p;
produces the following compile time error:
Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<Items>' to 'bool'
What is the correct way to query a child entity?