When i set property with "with" method, its leave null all propertys on nested objects which same named.
(im using autofixture's latest version as 3.0.8)
public class Something {
public string Id { get; set; }
public IList<Something> Things { get; set; }
}
var obj = Fixture.Build<Something>().With(q => q.Id, "something").CreateAnonymous()
In this situation, obj.Id == "something" equals to true, but also obj.Things[0].Id == null equalsto true.
I think there is a bug or im mistaken; Anyone may help?