-
Re: LINQPad 4.55.03 main process consumes > 1GB RAM over 72 hour period
The main change since the older versions is process isolation for queries. In case this is factor, you could try disabling it in Edit | Preferences | Advanced. Let me know the result. Thanks1 · -
Re: Odd wrapping behavior with a fixed width on a dump container when using Util.HorizontalRun
Isn't this what you'd expect? If you restrict the width so that it's not wide enough to fit both items, then shouldn't it indeed wrap?1 · -
Re: Avoiding bloated and contested MyExtensions. Thoughts?
My own "My Extensions" is 800 lines, and I use regions to divide it up. So far, it's not caused me any trouble; I put the things that I'm working on at the top. If it were to get …2 · -
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.Ye…2 · -
Re: Inserting records
Most likely the table is called Employees rather than Employee, because that's how is was defined in SQL Server. There's an easy way to tell: In the Schema Explorer, hover over Employees an…1 ·
