我想将我的模型映射到完全相同的配置。但总是得到这个错误:
类型地图配置:模型 - >配置
属性:名称----> System.NullReferenceException:Object 引用未设置为对象的实例。
android:sharedUserId="any string"
android:sharedUserLabel="@string/label"
Model和Config都有值:
cfg.CreateMap<Model, Config>().ForMember(x => x.Names, opt => opt.UseDestinationValue());
我做错了什么?