I have a parameterized test with the following property names passed to it:
[TestCase("customerId")]
[TestCase("connectionType")]
public void CanSearchClientsOrderedByProperties(string property)
I cannot figure out how to pass the property name in the assertion expression below:
searchResponse.Items.Should().BeInAscendingOrder(i => i.{How to use property name here?});