There are two classes:
public class UserDTO { public Guid Id { get; set; } public int DivisionId { get; set; } } public class User { public Guid Id { get; set; } public int DivisionID { get; set; } } Please tell me how to set the ignore case in AutoMapper settings so that the DivisionID properties can be converted to DivisionId.