-
Re: Copy DB-name from the tree
Good point - there should be context menus items for "Copy database name" and "Copy connection string". I'll add this to the next build. (View Post) -
Re: LINQPad AI Assistant Preview - feedback needed
Claude has a different API that's incompatible with that of OpenAI. I'll consider adding support for it, but in the meantime, have you considered using OpenRouter? The latest version of LINQPad suppo… (View Post) -
Re: Selecting a Framework
LINQPad 8 supports only .NET 3.1 and later, i.e., .NET Core 3.1, 5, 6, 7, 8, and 9. For .NET Framework 4.x support, you need to download LINQPad 5. (View Post) -
Re: LINQPad for macOS: First public preview!
The sample download feature hasn't been implemented yet - it's coming soon. (View Post) -
Re: Get run values at start from the user
You can also use Util.ReadLine with an enum: var env = Util.ReadLine<Env> ("what environment?", Env.Dev);enum Env { Dev, Sys, Stg, Prd }; (View Post)