Having set the following options to eager load a customer's orders:
DataLoadOptions dlo = new DataLoadOptions();
dlo.LoadWith<Customer>(c => c.Orders);
db.LoadOptions = dlo;
How would I then stop this and revert back to lazy loading the orders again? Or are these LoadOptions only used for the next query?