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.

I have a strange situation that I cannot figure out. I have a simple ASP.NET MVC4 application and am using AutoMapper to move data between ViewModel and Entity (DB) objects.

The issue that I am fighting is that my configuring of AutoMapper in Application_Start() seems to disappear when I reach Create() in CustomerController.

If I invoked Configure in the Create() method, the mapping from CustomerViewModel to CustomerEntity works properly.

I have scoured the Internet and have not seen anyone reporting this issue, so hopefully someone can give me a clue. Here are the details... I hope that someone has some suggestions because it is driving me crazy! :P

In global.asax.cs, in Application_Start(), I call the configure() method on my class:

AutoMapperConfigurator.Configure();

Here is the class:

public class AutoMapperConfigurator
{
    public static void Configure() 
    {
        Mapper.Initialize(x => x.AddProfile<AutoMappingProfile>()); 
    }
}

AutomMappingProfile is my AutoMapper profile class. It is implemented, as follows:

public class AutoMappingProfile : Profile    

    public override string ProfileName        
    {          
        get { return "AutoMappingProfile";}     
    }       

    protected override void Configure()  
    {
        CreateMaps();  
    }

    private void CreateMaps()  
    {
        CreateMap<CustomerEntity, CustomerEntity>();
        CreateMap<CustomerViewModel, CustomerViewModel>();
        CreateMap<CustomerEntity, CustomerViewModel>().IgnoreAllNonExisting();
        CreateMap<CustomerViewModel, CustomerEntity>().IgnoreAllNonExisting();

        CreateMap<CustomerVendorProductEntity, CustomerVendorProductEntity>();
        CreateMap<CustomersVendorsProductViewModel, CustomersVendorsProductViewModel>();
        CreateMap<CustomerVendorProductEntity, CustomersVendorsProductViewModel>().IgnoreAllNonExisting();
        CreateMap<CustomersVendorsProductViewModel, CustomerVendorProductEntity>().IgnoreAllNonExisting();
    } 
}

I set a breakpoint on CreateMaps() and see that it is invoked when the application starts.

When I invoke an action to create a new Customer entity, the Create() method in CustomerController is invoked.

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create([DataSourceRequest] DataSourceRequest request, CustomerViewModel vm)
    {
    .
    .
    var customer = AutoMapper.Mapper.Map<CustomerViewModel, CustomerEntity>(vm);
    .
    .   
}

The mapping always fails with a NotSupportedException on the mapping from a List to a Collection.

I have implemented ListSourceMapper, which is loaded as a Mapper in Configure(). I don't show it here, because it works... The issue that I am fighting is that my configuring of AutoMapper in Application_Start() seems to disappear when I reach Create() in CustomerController. If I invoked Configure in the Create() method, the mapping from CustomerViewModel to CustomerEntity works properly. I have scoured the Internet and have not seen anyone reporting this issue, so hopefully someone can give me a clue.

share|improve this question
2  
well, it seems correct (I may have missed something), but there's a strange thing in your mapping, with your maps between same entities... (like CreateMap<CustomerEntity, CustomerEntity>();) – Raphaël Althaus Oct 10 '12 at 7:45
can you show your ListSourceMapper as well please? – dove Oct 10 '12 at 9:30
Anything to do with this? stackoverflow.com/questions/5483174/… ? Are you trying to map TO an ICollection<T> ? AM doesnt support that directly as it OOTB doesnt guess concrete counterparts for abstract types - are you sure it's completely deterministic as long as you call the init in the Create method?. What happens if you do an AssertValid on the configuration? – Ruben Bartelink Oct 10 '12 at 20:55
You should also add a call to Mapper.AssertConfigurationIsValid() at the end of AutoMapperConfigurator.Configure(). – Patrick Steele Oct 11 '12 at 14:02
Did you figure this out? I've just started my first MVC4 project and am getting the same issue (have used AutoMapper previously in MVC3 without any issues). – pFrenchie Mar 13 at 7:53

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.