I am wondering if there is a way to modify asserting value in the config.
For example, I have the following assertion
customer.Should().Be(c, config => config.Excluding(c => c.Updated));
customer.Updated.Should().Be(c.Updated.ToString());
Is there any way to have conversion to string as part of the assertion instead of a separate assertion.
Something like this
customer.Should().Be(c, config => config.SomeFunction(c => c.Updated.ToString()))