-
Re: "Does not contain definition" error when trying to call a specific static method in Json.NET
You wouldn't happen to have another version of JSon.Net loaded via your 'My Extensions' ? I'm on a similar build and don't see that issue.1 · -
Re: LinqPad getting stuck after updating a few thousand records.
I suspect you are hitting the problem where SubmitChanges gets progressively slower each time you call it. You might be better to avoid it altogether and replace it with something like foreach(var a …2 · -
Re: LinqPad 5 Nuget - Unable to connect to the remote server
Not exactly the same, but I started getting '404 Not Found' errors when attempting to update any Nuget package. This turned out to be my own fault as I had added a second Package source which was no …1 · -
Re: Bitwise operator query in LINQPad?
Change where p.Party_type | 2 == 2 to where (p.Party_type | 2) == 21 · -
How to debug non-LinqPad code?
With older versions of LinqPad, you could attach the Visual studio debugger and step through, not just your LinqPad script but also through your code in other dlls. With the new integrated debugger, …1 ·