Any idea how I can tell AutoMapper to resolve a TypeConverter constructor argument using StructureMap?

ie. We have this:

    private class StringIdToContentProviderConverter : TypeConverter<string, ContentProvider> {
        private readonly IContentProviderRepository _repository;

        public StringIdToContentProviderConverter(IContentProviderRepository repository) {
            _repository = repository;
        }

        public StringIdToContentProviderConverter() {
            _repository = ObjectFactory.GetInstance<IContentProviderRepository>();
        }

        protected override ContentProvider ConvertCore(string contentProviderId) {
            return _repository.Get(new Guid(contentProviderId));
        }
    }

And in the AutoMap registration:

        Mapper.CreateMap<Guid, ContentProvider>().ConvertUsing<GuidToContentProviderConverter>();

However, I don't like the idea of hardwiring an ObjectFactory.GetInstance in my constructor for the converter. Any ideas how I can tell AutoMapper how to resolve my IContentProviderRepository?

Or ideas to other approaches for using Automapper to hydrate domain objects from viewmodel ID's using a repository?

link|improve this question

76% accept rate
Shouldn't automapper just map? – Paco Mar 29 '10 at 19:00
How do you map an Guid coming back from your view to a full blown domain object? – jacko Mar 30 '10 at 9:46
That is not mapping, that is data-access. – Paco Mar 30 '10 at 10:00
Ok agreed. What would you suggest instead? – jacko Mar 30 '10 at 11:04
Depends on how you use it? How do you use it? – Paco Mar 30 '10 at 13:14
feedback

2 Answers

up vote 4 down vote accepted

We use this (in one of our Bootstrapper tasks)...

        private IContainer _container; //Structuremap container

        Mapper.Initialize(map =>
        {
            map.ConstructServicesUsing(_container.GetInstance);
            map.AddProfile<MyMapperProfile>();
        }
link|improve this answer
Cheers, perfect – jacko Mar 29 '10 at 11:41
It demands empty constructor. Isn't so? – Arnis L. Oct 5 '10 at 12:17
Hi Arnis, not sure what you mean? 'MyMapperProfile' just extends the Profile class as supplied by AutoMapper. We are telling AutoMapper what IoC container we are using. – ozczecho Oct 5 '10 at 22:41
feedback

The ConstructUsing method seems to have an overload that accepts a Func<T1,T2> . In there you could access your container.

EDIT: Convert also knows such an overload such that you could do:

Mapper.CreateMap<A, B>().ConvertUsing(i=> c.With(i).GetInstance<B>());

Where c is your container

link|improve this answer
Sorry, ContructUsing should be ConvertUsing – jacko Mar 29 '10 at 11:28
Thanks, this also works, but I think the accepted solution is cleaner – jacko Mar 29 '10 at 11:45
feedback

Your Answer

 
or
required, but never shown

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