-
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 · -
Re: Can't install nuget v3.0 packages
The LINQPad beta released a few hours ago uses NuGet 2.9.0, but this doesn't appear to fix the problem. It looks like I will have to migrate LINQPad to NuGet 3.0, which is a non-trivial exercise.1 · -
Re: UI Bug Report
The ArgumentException and Dump depth number selector bugs have been fixed in the 4.05 beta: http://www.linqpad.net/download.aspx#beta The debugger listviews don't support sorting. Being unable to dou…1 ·