Linqpad Query cache
Hi,
Is there a way for a query to not be cached after execution? Is there a commend that I can call from within the query the cleans up the cached appdomain?
Is there a way for a query to not be cached after execution? Is there a commend that I can call from within the query the cleans up the cached appdomain?
Comments
Util.NewProcess = true;
This will make the next execution use a fresh process.
Another option is to go to Edit | Preferences > Advanced > Execution and set the option 'Always use fresh process per execution'.
Yet another option is to press Shift+F5 which clears the currently cached process.