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.

Using AutoMapper, is it possible to do a type conversion and selectively format the destination value based on a ForMember expression?

  public class TestConverter : ITypeConverter<string, IHtmlString> {
        public IHtmlString Convert(ResolutionContext context) {
            return new MvcHtmlString(context.SourceValue.ToString());
        }
    }

    public class CostFormatter : ValueFormatter<string> {
        protected override string FormatValueCore(string value) {
            return String.Format("${0}", value);
        }
    }

    public class SimpleClass {
        public string Test { get; set; }
    }

    public class SimpleClassDto {
        public IHtmlString Test { get; set; }
    }

    class Program {
        static void Main(string[] args) {

            Mapper.CreateMap<string,
IHtmlString>().ConvertUsing<TestConverter>();

            Mapper
                .CreateMap<SimpleClass, SimpleClassDto>()
                .ForMember(x => x.Test, opts =>
opts.AddFormatter<CostFormatter>());

            var s = new SimpleClass() { Test = "4.56" };
            var dto = Mapper.Map<SimpleClass, SimpleClassDto>(s);

            Console.WriteLine(dto.Test);

        }
    }

What I'm currently seeing is the projection from string to IHtmlString, but the formatter is not hit and the output is 4.56 instead of $4.56.

What am I missing?

share|improve this question
could you show an example of what you are trying to achieve – Omu Sep 2 '10 at 18:53
Updated code. Hopefully that's clear. Let me know if it isn't. – csano Sep 3 '10 at 3:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.