-
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 whi…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 -
Re: Reference not updating
Could you have an older version referenced in 'My Extensions' or located in your Plugins folder?1