Automapper Not Mapping mapping properties
问题 I was working on Generics and I got stuck into weird issue. I am facing issue with AutoMapper-9 mapping. I have implemented ICollection but Automapper is not mapping the properties correctly. My code is CollectionBase class which is implementing ICollection public class CollectionBase<T> : ICollection<T> { ICollection<T> _items; public CollectionBase() { _items = new List<T>(); } protected CollectionBase(ICollection<T> collection) { // Let derived classes specify the exact type of ICollection