I have a class:
public class Person { public string FirstName { get; set; } public string LastName { get; set; } }
I have two insta
Mapper.CreateMap(); // Perform mapping var person1 = Mapper.Map(person2);
Hope this helps.