I am using Automapper for making a copy of an object
My domain can be reduced into this following example
Consider I have a Store
with a collection of Location
public class Store
{
public string Name { get; set;}
public Person Owner {get;set;}
public IList<Location> Locations { get; set;}
}
Below is an example of a store instance
var source = new Store
{
Name = "Worst Buy",
Owner = new Person { Name= "someone", OtherDetails= "someone" },
Locations = new List<Location>
{
new Location { Id = 1, Address ="abc" },
new Location { Id = 2, Address ="abc" }
}
};
My Mappings are configured as
var configuration = new ConfigurationStore(
new TypeMapFactory(), MapperRegistry.AllMappers());
configuration.CreateMap<Store,Store>();
configuration.CreateMap<Person,Person>();
configuration.CreateMap<Location,Location>();
I get the mapped instance as
var destination = new MappingEngine(configuration).Map<Store,Store>(source);
The destination object I get from mapping has a Locations collection with the same two instances present in the source, that is
Object.ReferenceEquals(source.Locations[0], destination.Locations[0])
returns TRUE
My question is
How can I configure Automapper to create new instances of Location while mapping.