I need to map ICustomerAddresses to my own custom object Address, or List < Address >. How can I use automapper to indicate that the property Customer.ICustomerAddresses maps to my custom Address?
To, illustrate, I have a an interface that has its properties listed like this:
public interface ICustomer
{
ICustomerAddresses Addresses;
}
In this case, ICustomerAddresses is a collection of ICustomerAddress. However, ICustomerAddress is not a simple IEnumerable, it contains properties that contain the collection, like this:
public interface ICustomerAddresses : IBusinessObjectCollection
{
ICustomerAddress this[int nIndex] { get; }
ICustomerAddress CreateNew();
ICustomerAddress AddNew();
}
Automapper cannot figure out on its own that ICustomerAddresses is really just a collection of ICustomerAddress, so how do I tell it that's the case?
Thanks in advance!