我已将 AutoMapper 从 4.2.x 更新到 6.2.0。
我收到了一些破坏性的语法编译器错误:
this.CreateMap<ActDTO, Act>()
.ConstructUsing((Func<AutoMapper.ResolutionContext, Act>)(ctx => new Act()))
.ForMember(
//...;
我收到这条消息:
Argument 1: cannot convert from 'System.Func<AutoMapper.ResolutionContext, Act>'
to 'System.Func<ActDTO, Act>'.
有任何想法吗?