I am trying to check the order of a nested collection with FluentAssertion as follows.
selectedStudent.MarkSheets.Select(x => x.Comments.Should().BeInDescendingOrder(x => x.CommentedTime));
But this seems to be not correct since even if I check BeInAscendingOrder(x => x.CommentedTime the assertion is true. How can I test this correctly using FluentAssertion?