Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to use AutoMapper to map from Source to Destination conditionally resolving some properties based on the property value of another object? For example, mapping Source.Property to Destination.Property where ThirdObject.CountryCode.Equals("SomeCountry").

The current code base is setup so that values are being mapped from a DataReader to a list of objects. Then, if the ThirdObject.CountryCode has a certain value, then an amount property on the destination object must be multiplied by a multiplier.

Currently, I'm thinking of solving the problem by coming up with something like:

   Mapper.Map<IDataReader, Destination>(dataReader)
      .OnCondition(ThirdObject.CountryCode.Equals("SomeCountry")
      .ForMember(destination => destination.Amount)
      .UpdateUsing(new Multiplier(fixedAmount));

I'm hoping there is an easier way before going down that path.

share|improve this question

1 Answer

Look at ResolveUsing:

    Mapper.CreateMap<Journal_Table, Journal>()
        .ForMember(dto => dto.Id, opt => opt.MapFrom(src => src.JournalId)) 
        .ForMember(dto => dto.Level, opt => opt.ResolveUsing<JournalLevelResolver>().FromMember(name => name.Journal_level));

Then:

public class JournalLevelResolver : ValueResolver<string, JournalLevel>
{

    protected override JournalLevel ResolveCore(string level)
    {
       ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.