Checking if JsonDoument has all elements of another JsonDoument
Is there any easy way to check if one JsonDocument has the same elements as another JsonDocument? I want to achieve something like b.Except(a).Any() for List. Edit: What I want is not DeepEquals as it compares absolutely everything and if…