-
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… (View Post) -
Re: linqPad IWebdriver want to connect to Mysql ?
Change connection (at the top right) to none (View Post) -
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… (View Post) -
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… (View Post) -
Re: Is there a way to change the dump (header) for a dictionary ?
Replacing the Key/Value should be simple as long as you don't want to use spaces ( or other characters that C# does not allow in identifiers or start with a number) You can just use d.Select(e => … (View Post)