How do I force LINQPad to give me a non-cached result from a LINQ2SQL query?
The scenario is this:
1) examine some data (from a in MyThings where ... select a).First(); 2) modify data outside LINQPad immediately after (service call) 3) re-examine some data (from a in MyThings where ... select a).First();
It seems to be caching results. :-/