Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Automapper and I have the following scenario: Class OrderModel has a property called 'ProductName' that isn't in the database. So when I try to do the mapping with:

Mapper.CreateMap<OrderModel, Orders>(); 

It generates an exception :

"The following 1 properties on Project.ViewModels.OrderModel are not mapped: 'ProductName'

I've read at AutoMapper's Wiki for Projections the opposite case (the extra attribute is on the destination, not in the source which is actually my case )

How can I avoid automapper to make the mapping of this property?

share|improve this question

4 Answers

up vote 6 down vote accepted

Have a look at the following posts, these might help you

How to configure AutoMapper for Polymorphism with explicit member mapping ?

automapper how to ignore property in source item that does not exist in destination

share|improve this answer
Thank you all, it's solved, the real issue was not mapping that property (Automapper ignored it because that property was not in the destiny object), the issue was on another property. What made me doubt was that when I did the Mapper.AssertConfigurationIsValid(); showed me an error. It was only an advertising saying "that property is not going to be mapped" :) Thank you Divi who guide me to the right direction with the second link – Msam85 Feb 14 '11 at 19:22

From Jimmy Bogard: CreateMap<Foo, Bar>().ForMember(x => x.Blarg, opt => opt.Ignore());

It's in one of the comments at his blog.

share|improve this answer

There is now (AutoMapper 2.0) an IgnoreMap attribute, which I'm going to use rather than the fluent syntax which is a bit heavy IMHO.

share|improve this answer
3  
The ignore attribute leaks auto-mapper through your application though. – Phill Nov 27 '11 at 12:38
1  
AutoMapper is one thing which I don't mind leaking all over the place. ;) – Pawel Krakowiak Dec 7 '12 at 16:46

I'm perhaps a bit of a perfectionist; I don't really like the ForMember(..., x => x.Ignore()) syntax. It's a little thing, but it it matters to me. I wrote this extension method to make it a bit nicer:

public static IMappingExpression<TSource, TDestination> Ignore<TSource, TDestination>(
    this IMappingExpression<TSource, TDestination> map,
    Expression<Func<TDestination, object>> selector)
{
    map.ForMember(selector, config => config.Ignore());
    return map;
}

It can be used like so:

Mapper.CreateMap<JsonRecord, DatabaseRecord>()
        .Ignore(record => record.Field)
        .Ignore(record => record.AnotherField)
        .Ignore(record => record.Etc);

You could also rewrite it to work with params, but I don't like the look of a method with loads of lambdas.

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.