-
Re: RemoteException in sql driver
Good news - I've now got a repro and have just released a fix. Let me know how you get along. (View Post) -
Re: How can I add a reference to Shell32.dll?
Yes, you can use Shell32 just as you would in Visual Studio. But not by adding a reference to it, because it's a native DLL that's part of Windows. Here' an example from StackOverflow that you can ru… (View Post) -
Re: Can I change the output data style so that a comma appears when the data is a number?
Try the latest beta: https://www.linqpad.net/linqpad7.aspx#beta There are now options in Edit | Preferences to include group separators in numbers without needing to write a ToDump method. It also ap… (View Post) -
Re: [Feature] Add additional package links in the LINQPad NuGet Manager
These are good suggestions; some should make into a build in the next month or two. (View Post) -
Re: Can I change the output data style so that a comma appears when the data is a number?
You need to add a static ToDump method to your query to intercept the Dump pipeline: static object ToDump (object input){ if (input is int or long) return $"{input:N0}"; if (input is float … (View Post)