I'm trying to map an array into an ICollection of type <T>.
Basically I want to be able to do:
Mapper.CreateMap<X[], Y>();
Where Y is Collection<T>
Any ideas?
I'm trying to map an array into an ICollection of type <T>.
Basically I want to be able to do:
Mapper.CreateMap<X[], Y>();
Where Y is Collection<T>
Any ideas?