I have a nested child class with public properties with private setters. In the parent class I am able to use Automapper to map to the child class and the values of the private setters are being set. Everything I've read points to Automapper not supporting this and requiring a custom constructor in the child class to populate private setters.
Is the current version using reflection or something to map the private setters? The setters are definitely private because in the parent class I am unable set Child.Property but in the same place Mapper.Map is able to set the property.