Thomas Eyde
Thomas Eyde
Please forgive me if I'm incorrect. I use `SqlStreamStore.MsSql`, and when I call `ReadAllForwards` to retrieve 1000 events, I experience retrieve times of over 30 seconds. For 2000 events, it's...
### Which service(blob, file, queue, table) does this issue concern? table ### Which version of the Azurite was used? 3.17.1 ### Where do you get Azurite? (npm, DockerHub, NuGet, Visual...
NuGet packages for .NET Core would be nice :)
I miss the following `Match` method for `UnitResult`: ```csharp static class MatchUnitResult { public static R Match(this UnitResult result, Func success, Func failure) => result.IsSuccess ? success() : failure(result.Error); }...
`ShouldBeType()` accepts null, while the counterpart `ShouldNotBeType()` does not. It's not only inconsistent, but also very inconvenient: I don't want my assertion to throw a `NullReferenceException`, because then I lose...