Any ideas how to combine these when dealing with nested collections?
Meaning, say I wanna do this:
actual.ShouldHave().AllProperties().IncludingNestedObjects(CyclicReferenceHandling.Ignore).EqualTo(expected);
but in case there are nested collection involved, call 'NotBeInOrder' instead of the current 'Equal' behavior.
(I'm fetching data from a database and can't rely on order)
Thanks!