Using FluentAssertions:
I'm able to exclude a single property using ShouldBeEquivalentTo.
x.ShouldBeEquivalentTo(y, opts => opts.Excluding(si => !si.PropertyInfo.CanWrite));
But, how do I exclude more then 1 property when using ShouldBeEquivalentTo() ?