JayFad

Results 2 comments of JayFad

> `PropertyPath` was removed from `ISubjectInfo` in [v4](https://github.com/fluentassertions/fluentassertions/releases/tag/4.0.0). > > Use `SelectedMemberPath` instead > > ```cs > clientDtos.ShouldBeEquivalentTo(clientDtosToCompare, option => option > .Excluding(x => x.SelectedMemberPath.EndsWith("ClientName"))); > ``` What's with the...

> > What's with the `EndWith`, I have properties that end up with the same suffix , but I need only one of the properties to be removed > >...