I'm using Automapper to copy one object properties to other and later will update in database using EF.
Question is how to tell Automapper copy every property but ignore a particular property (in this case it will be Id). I'm new to AutoMapper and just have done this code. I don't have other configurations or use of AutoMap in project.
Mapper.Map(lead, existingLead);
I have downloaded AutoMapper form here https://github.com/AutoMapper/AutoMapper