This is an idea / feature request:
It makes sense to enable sequential ordering.
My use-case is that I want to verify that a collection was sorted first by a Name, then by Id.
Is there any way of doing that using assertions such as BeInAscendingOrder and not by using predefined expected collection?
My expectation was to have something like results.Should().BeInAscendingOrder(x => x.Name).And.BeInAscendingOrder(x => x.Id);