-
Re: Cancelling a query should not clear cached results
LINQPad kills the query process when you cancel to ensure that any other threads or tasks that you may create don't continue running and pollute the next execution. You can prevent this behavior by e…1 · -
Re: Wrong Line highlighted on IndexOutOfRangeException
Sure, I can change the messagebox so that it doesn't steal a mouse click or keypress.2 · -
Re: Dump() result does not appear in Result Pane when called from a Timer?
Your timer is getting garbage collected. You need to do this:void Main() { Foo(); } static Timer _tmr; void Foo() { _tmr = new Timer (_ => "Foo".Dump(), null, 1000, -1); } You'll run int…1 · -
Re: Threads in LinqPad
LINQPad keeps the process alive after your code finishes running (and it re-uses the process when you re-run the query). This is a performance optimization, and it allows you to further interact with…2 · -
Re: Linqpad, Entity Framework and .net 5.0 (vNext)
This might become a reality as EF7 matures. Right now, EF7 lacks features such as lazy loading of navigation properties, and this would degrade the experience.1 ·