-
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 · -
Re: Built-in EF Core driver not finding Microsoft.Data.Sqlite.dll
I can only guess that the NuGet packages for SQLite or EF Core have partially downloaded. Can you try closing LINQPad and deleting the following folders: c:\users\steve.nuget\packages c:\users\steve\…1 ·