Aaron Sherber

Results 118 comments of Aaron Sherber

I had the same issue and tackled it by implementing my own compiler. ```c# class NoLockCompiler : SqlServerCompiler { public override string CompileTableExpression(SqlResult ctx, AbstractFrom from) { return base.CompileTableExpression(ctx, from)...

See my comment [here](https://github.com/sqlkata/querybuilder/issues/462#issuecomment-866398530).

I'm interested in this as well. The more I can do without `SelectRaw`, the happier I am. Like the OP, I would love to do something like: ```csharp var q...

Leaving aside the header distortion, the underlying issue (Split is enabled when `FreezePanes` is used) can be reproduced with the following minimal code: ```csharp var xl = new XLWorkbook(); var...

I was unable to run the unit tests on my machine -- I think my environment is missing some configuration. And the automated tests seem to have been cancelled because...

@nvarscar Also add `Get-JiraIssueWorklog` to the `FunctionsToExport` array in `JiraPS.psd1` if you're making mods locally.

I'm still able to reproduce this with solutions that use LibLog, using dotnet 7.0.100.

Well, interestingly, the specific repro [given above](https://github.com/dotnet/sdk/issues/25758#issuecomment-1151096060) now works for me, but my actual project that uses LibLog is still seeing the error. I'll try to come up with a...

I haven't thought about it in a while, but no, it still appears to be present in the latest release. Looking at the code and the way things are worded...

I went ahead and did the versioned `MailgunMessage` thing in my `feature/apifields-versioned` branch, if you want to take a look. If you like that version, I can issue the PR...