-
Re: License for LinqPad on AWS
Try the new beta and let me know how you get along: https://www.linqpad.net/download.aspx#beta2 · -
Re: Getting data out form a script to the C# that ran it
If you want to use the script's output, i.e., what it dumped, use exec.AsString(). If you want to use the script's return value, i.e.:string Main() { return "hello, world"; } then use exec.…1 · -
Re: License for LinqPad on AWS
I've added EC2 support, and will upload a beta in next day or two. I've also looked into Aliyun - I've set up an account and created a VM - but supporting it looks like a harder project.5 · -
Re: Status of LINQPad 6?
LINQPad 6 targets the upcoming .NET Core 3. I've been working on it for a number of months, and am now down to 300 items on the TODO! As you might be aware, quite a few things in .NET Framework (and …4 · -
Re: Grouping with LINQ
Right - there's only one SQL query if you select just the keys and aggregations. There are more examples in the built-in samples section of LINQPad:from p in Purchases group p.Price by p.Date.Year in…2 ·