ErikPilsits-RJW
ErikPilsits-RJW
I think you have an atomicity issue in the release method. ```csharp public void Release(T idToUnlock) { InnerSemaphore semaphore; if (lockDictionary.TryGetValue(idToUnlock, out semaphore)) { semaphore.Release(); if (!semaphore.HasWaiters && lockDictionary.TryRemove(idToUnlock, out...
I was hoping you could help me understand a bit more the inner working of the Polly retry policy. I have setup a WaitAndRetry policy using IHttpClientFactory, and have added...
I'm having a few issues with the translation of subqueries. First one, which works as expected directly in an EF context, instead tries to select the entire table via Remote.Linq....
Pretty straight forward. When pressing the "Generate Outputs" button in NSwag Studio, it creates the api contracts source file if the use contracts option is enabled. The expectation is that...
A 204 response is successful and it is expected that there is no body. Therefore the client should return the `default(T)` response instead of throwing a null response exception.
This is a support request really, and I know this isn't the correct project, but I assume issues over there are going to go unanswered... We use Dapper.Oracle quite extensively...
I think I have a bug related to #236 . We have been adding activity baggage to our telemetry like this: ```csharp public static void AddActivityBaggage(this WmsOrderPostEvent evt) { var...