DataLoadOptions loadOptions = new DataLoadOptions();
loadOptions.AssociateWith<Customer>(
c => from o in c.Orders
where o.OrderDate.Value.Year == 1997
select o);
db.LoadOptions = loadOptions;
var query =
from c in Customers
where c.Orders.Count > 5
select c;
