For each member of a specific type in a Mapping, i want to use my specific custome value resolver.
The way i'm doing it now is defining this custom value resolver for each and every member that needs it. This is the current code:
I only want to specify this one, for a specific map, but for all my googling and searching i couldn't find a solution to this. Any ideas? Note: It's not global for all Mappings, only for a specific Mapping !
Here's the current code:
Mapper.CreateMap<csp_CheckSLAForPeriodByHour_Result, CheckSlaItem>()
// make doubles into 0 instead of null
.ForMember(p => p.Avg_ms, opt => opt.ResolveUsing<DoubleValueOrZeroResolver>().FromMember(p => p.avg_ms))
.ForMember(p => p.Mdn_ms, opt => opt.ResolveUsing<DoubleValueOrZeroResolver>().FromMember(p => p.mdn_ms))
.ForMember(p => p.Sla_i_wefu, opt => opt.ResolveUsing<DoubleValueOrZeroResolver>().FromMember(p => p.sla_i_wefu))
.ForMember(p => p.Sla_iw_efu, opt => opt.ResolveUsing<DoubleValueOrZeroResolver>().FromMember(p => p.sla_iw_efu))
.ForMember(p => p.Std_ms, opt => opt.ResolveUsing<DoubleValueOrZeroResolver>().FromMember(p => p.std_ms))
// make ints into 0 instead of null
.ForMember(p => p.Min_ms, opt => opt.ResolveUsing<IntValueOrZeroResolver>().FromMember(p => p.min_ms))
.ForMember(p => p.Max_ms, opt => opt.ResolveUsing<IntValueOrZeroResolver>().FromMember(p => p.max_ms))
;
I would like something simple as:
Mapper.CreateMap<csp_CheckSLAForPeriodByHour_Result, CheckSlaItem>()
.ForAllMembers().OfType(double?).ResolveUsing<DoubleValueOrZeroResolver>()
Would be grateful for any solution to this!
Brgds Rickard Robin
double(instead ofdouble?). If you do that, the destination properties will be initialized to0Dand you won't have to worry about automapper. – Andrew Whitaker Jun 6 '12 at 14:16