-
Re: Is there any way to highlight certain rows in dump results
In the next build, you'll be able to do this: from file in new DirectoryInfo (Util.LINQPadFolder).GetFiles()select Util.HighlightIf ( file.Extension == ".exe", new { file.Name, file.Length,…1 · -
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 ·