AutoMapper映射基于包含属性名称

时间:2017-05-09 06:54:43

标签: automapper

是否可以根据类似的属性名称映射两个类:

class Source {
  public int uId { get; set; }
  public string PrefixRef { get; set; }
  ...
}

class Destination {
  public int Id { get; set; }
  public string Prefix { get; set; }
  ...
}

感谢。

更新

-1,聪明的alek。 我对AutoMapper完全不熟悉。

Mapper.Initialize(cfg => {
  cfg.RecognizePrefixes(new[] { "u" });
  cfg.RecognizePostfixes(new[] { "Ref" });
  cfg.CreateMap<Source, Destination>();
});

0 个答案:

没有答案