-
Re: Is LINQPad worth it?
If it helps, 80% of the queries that I see use no database at all. LINQPad is used mainly for scripting and automation, exploring APIs and playing with NuGet packages, testing ideas, and writing code… (View Post) -
Re: Roadmap for cross platform (ubuntu/linux)?
@urza - Assuming MAUI delivers the x-platform desktop UI features needed for LINQPad, support for macOS is likely to come before Linux. @wocar and @Dluk - I've added an exception handler around the c… (View Post) -
Re: LinqPad 6 First Execution Slow, Then Blazing Fast
With subsequent executions, LINQPad uses the same process and so anything that's cached in memory by your script will benefit in performance. This hasn't changed in any recent LINQPad update. A simpl… (View Post) -
Re: LP5: Reference assemblies should not be loaded for execution
It sounds like a reference assembly is somehow ending up in your project's output folder. Can you verify that System.IO.Compression.* is not present in your output folder? (View Post) -
Re: How to show WPF controls during run script
Replace the call to Thread.Sleep with: await Task.Delay(1000); Another option, if you need just a simple button and not a WPF button, is to use LINQPad's HTML controls, i.e., LINQPad.Controls.Button:… (View Post)