-
Re: Linqpad can't add row to table with rowguid default value
Unfortunately, this is a limitation of LINQ to SQL. There's no good workaround, other than perhaps recompiling the source code for LINQ to SQL, and adding this as a new feature. (And it would be…1 · -
Re: CompilationOptions ctor error when using Microsoft.CodeAnalysis - MissingMethodException
There's a workaround that you can use right now. Go to Query | App.Config (Ctrl+Shift+O). Click 'Let me type it in' and paste the following in:<configuration> <runtime> <…2 · -
Re: CompilationOptions ctor error when using Microsoft.CodeAnalysis - MissingMethodException
Microsoft.CodeAnalysis.CSharp.dll references System.Collections.Immutable 1.1.37.0, whereas the NuGet package includes v1.2.0.0 of the latter. You can verify this as follows:typeof (CSharpCompilation…1 · -
Re: Dump on a NameValueCollection
This is now fixed in the new beta: http://www.linqpad.net/download.aspx#beta1 · -
Re: Dumping in different panel
You could write an extension method in the 'My Extensions' query like this:public static T DumpX<T> (this T toDump, string panelName) { System.Windows.Forms.WebBrowser browser; TextWr…4 ·
