-
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? (View Post) -
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 a lot bigg… (View Post) -
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… (View Post) -
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 and look at … (View Post) -
LINQPad Debugger - Early Input Request!
What are your thoughts on integrated debugging within LINQPad? In particular:* What features in Visual Studio's debugger do you consider important / unimportant for LINQPad? * What unique/original/ou… (View Post)