-
Re: Status of LINQPad 6?
LINQPad 6 targets the upcoming .NET Core 3. I've been working on it for a number of months, and am now down to 300 items on the TODO! As you might be aware, quite a few things in .NET Framework (and …4 · -
Re: Grouping with LINQ
Right - there's only one SQL query if you select just the keys and aggregations. There are more examples in the built-in samples section of LINQPad:from p in Purchases group p.Price by p.Date.Year in…2 · -
Re: Compilation error when combining static usings and extension methods
In your using declarations, you need to change static UserQuery.StaticUsingsTest to static StaticUsingsTest This is because when you define extension methods, LINQPad moves your classes outside UserQ…2 · -
Re: How to let try-catch works in LINQPad
What do you mean by "stopped"? Have you enabled "Break when exception is thrown" in the toolbar (the blue bug icon)? If so, uncheck that and it will run without breaking.1 · -
Re: How to get more than 10,000 rows (Records)
The rich-text view is limited to 10,000 because results are formatted as HTML and rendered in a web browser. If you click the 'Results to Data Grids' button on the toolbar, results will render in a g…1 ·
