I've updated AutoMapper from 4.2.x to 6.2.0.
I'm getting some breaking syntax compiler errors:
this.CreateMap<ActDTO, Act>()
.ConstructUsing((Func<AutoMapper.ResolutionContext, Act>)(ctx => new Act()))
.ForMember(
//...;
I'm getting this message:
Argument 1: cannot convert from 'System.Func<AutoMapper.ResolutionContext, Act>'
to 'System.Func<ActDTO, Act>'.
Any ideas?