-
Re: Cannot authenticate to Azure SQL Server with MFA
Thanks - I'll get a beta out soon.1 · -
Re: Install path of LINQPad nuget manager
By default, LINQPad works like a Visual Studio 2019 library project in this regard: only the output DLL is copied to the output folder, and NuGet dependencies are picked up on the fly from the NuGet …1 · -
Re: Refresh Schema Explorer programmatically from dynamic driver
You could do this: void RefreshConnection (IConnectionInfo cxInfo){ if (this.LINQPadVersion >= new Version (6, 9, 2)) ForceRefresh (cxInfo);}static void ForceRefresh (IConnectionInfo cxInfo){#if N…1 · -
Re: Refresh Schema Explorer programmatically from dynamic driver
There's no way to do this, and it's a reasonable request. Would it help if I added the following method to IConnectionInfo? Task ForceRefresh(); The obvious place to call this would be in the OnQuery…1 · -
Re: LinqPad 6 and xUnit test framework
This is a good use-case. I will be adding explicit support for xunit soon, to make this easier.4 ·