-
Re: Dump only part of an Object
From LINQPad 5.08, you can define a "ToDump" method on any class, which controls how the object is dumped. This is a convention-based system, so you do not need to reference LINQPad.exe. Fo…1 · -
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 a br…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> <assemblyBindin…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 ·
