I have the following two objects -
public class Customer
{
    public Customer(string userName, string email)
    {
        this.UserName = userName;
        this.Email = email;
    }
    public string UserName { get; }
    public string Email { get; set; }
}
public class CustomerUpdate
{
    public string Email { get; set; }
}
I don't want to add a constructor in Customer to initialize Email only. Can I create a map from CustomerUpdate to Customer so that UserName is set to null?
(I'm using AutoMapper 9.0.0)