Autofixture Abaikan properti

var person = fixture.Build<Person>()
    .Without(p => p.Spouse)
    .CreateAnonymous();
Blue Bird