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.

Usually the property names are the same,but many properties have on one side a prefix.

Classes may look like this

public class User
{
     public string Name{ get; set; }
     public string Adress{ get; set; }
     public string SureName{ get; set; }
} 

public class UserEntity
{
     public string Name{ get; set; }
     public string XxxAdress{ get; set; }
     public string YyyYyySureName{ get; set; }
} 

Is it possible to create a rule,which would compare the property names using the EndsWith() function ?

I don't want use the .ForMember on every object, there are to many objects to maintain this.

share|improve this question
very possible but not with automapper =) – Omu May 13 '11 at 19:26

1 Answer

up vote 1 down vote accepted

You can use the RecognizePrefixes or RecognizeDestinationPrefixes for common prefixes/postfixes, and AutoMapper will match things up for you appropriately. These methods can be found on the Profile classes.

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.