-
Re: LINQPad 8 - Can't create EF Core connection
You should see a stack trace in the Log file. Alternatively, don't try to test the connection, but use it in a query and I think you should see a stack trace. Failing that, if you have the source for…1 · -
Re: Works in Visual Studio 2022 but not in LINQPad
AFAIK 0x80131534 isn't a very helpful error as it very generic (sort of like a TypeInitializationException which tells you a C# type did not initialise, but you need to look at the inner exceptions t…1 · -
Re: linqPad IWebdriver want to connect to Mysql ?
Change connection (at the top right) to none2 · -
Re: Using LinqPad's native Spreadsheet column header issue
If you are looking for a workaround would it be feasible to convert values to a DataTable and change the ColumnName? For example, if you use FastMember nuget package you can do something like DataTab…1 · -
Re: Benchmark stuck on "Waiting for first iteration to complete..."
I came across this error message and the reason was because BenchMark DotNet requires a parameterless constructor which is missing for connections using a DBContext in a custom assembly. In my case I…1 ·