autofixture ignore property

C#
var person = fixture.Build<Person>()
    .Without(p => p.Spouse)
    .CreateAnonymous();
Source

Also in C#: