Hi JulianBenjamin,
I was not able to reproduce your issue.
Here's a simple test I ran against NorthwindIB:
public void TestInclude() {
var mgr = new IdeaBladeTest1Entities();
var query = mgr.Employees.Where(e => e.EmployeeID == 1).Include("Orders");
var employee = query.FirstOrNullEntity();
// all orders belonging to employee are loaded into cache
var orders = mgr.Orders.With(QueryStrategy.CacheOnly).Where(e => e.EmployeeID == 1).ToList();
}
Can you provide a simple solution (against NorthwindIB) reproducing your issue?
Regards,
Silvio.