Tomasz Malinowski
Tomasz Malinowski
@rasmus I'ver fixed the tests, can you take a look? System.Text.Json has two basic limitations compared to Netwonsoft.Json: 1. System.Text.Json treats empty JSON as invalid and throws JsonException; Newtonsoft.Json deserializes...
Regardless of the outcome of #876, could you please merge this PR? We can always extract the code to a different project afterwards, and I'm avaliable to do this if...
how are things progressing re System.Text.Json? I am corrently working on a project that uses System.Text.Json as primary JSON serialization library, but I still have to duplicate large portions of...
I've been playing around with System.Text.Json and noticed two differences from Netwonsoft.Json: 1. System.Text.Json treats empty JSON as invalid and throws `JsonException`; Newtonsoft.Json deserializes it to `null` 2. Newtonsoft.Json can...
I've looked through the source code and it seems that this behaviour (not checking for duplicate `SourceIds` inside the aggregate) is actually desirable, because a single command may actually result...
The immediate cause seems to boil down to the [rules of overload resolution](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/expressions#1264-overload-resolution), specifically selecting a [better function member](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/expressions#12643-better-function-member). In my case, the interesting parameters are `superset` and `pageNumber`. For...
Please excuse me if I acted too hastily, it wasn't my intention to force you in any way; I've pushed this PR only to have some code to link in...