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.