admin管理员组

文章数量:1602101

AutoMapper can map to destination constructors based on source members:

public class Source {
    public int Value { get; set; }
}
public class SourceDto {
    public SourceDto(int value) {
        _value = value;
    }
    private int _value;
    public int Value {
        get { return _value; }
    }
}
Mapper.Initialize(cfg => cfg.CreateMap<Source, SourceDto>());

If the destination constructor parameter names don't match, you can modify them at config time:

public class Source {
    public int Value { get; set; }
}
public class SourceDto {
    public SourceDto(int valueParamSomeOtherName) {
        _value = valueParamSomeOtherName;
    }
    private int _value;
    public int Value {
        get { return _value; }
    }
}
Mapper.Initialize(cfg => 
  cfg.CreateMap<Source, SourceDto>()
    .ForCtorParam("valueParamSomeOtherName", opt => opt.MapFrom(src => src.Value))
);

This works for both LINQ projections and in-memory mapping.

You can also disable constructor mapping :

Mapper.Initialize(cfg => cfg.DisableConstructorMapping());

转载于:https://wwwblogs/Leman/p/5774323.html

本文标签: 函数construction