How to compare two Json objects using C#
I did a bit more digging and was able to find out why the OP’s test code doesn’t run as expected. I was able to fix it by installing and using the FluentAssertions.Json nuget package. One important thing: Be sure to include using FluentAssertions.Json otherwise false positives may occur. Test code is the following: using … Read more