-
Re: .NETStandard 2.0 packages: No usable .NET assemblies in package
Thanks for the links. Being a scratchpad, LINQPad uses the standard Roslyn tool chain, not MSBuild. This might make a solution challenging. I'm speaking at conferences this week and next; after that …1 · -
Re: Is it True that can't join tables from different servers?
After following the instructions in the FAQ, you should end up with a data context in LINQPad that includes tables from both databases. If you are unsure on how to refer to one of these tables, simpl…1 · -
Re: lprun has exception NullReferenceException, Query in windows run as expected
I've looked at the source code for linq2db and found the likely cause: it's writing to the SQL translation tab using a TextWriter which is null when called from lprun. I've modified LINQPad to assign…2 · -
Re: Autocomplete and focus
The new beta is now available: http://www.linqpad.net/download.aspx#beta1 · -
Re: async Task Main() + GUI
You need to ensure that a synchronization context is created before the first await. You can do this by dumping a UI control before the first await, or by putting the following code at the start of y…4 ·
