AutoMapper: Mapping objects with interface properties
问题 my current task needs to pay attention on mapping between different object types and so I recognized the very nice AutoMapper library. So far easy to handle but these different objects contains complex interface type properties. Let me show you a code snippet: public inferface IInterface { string TextProperty { get; set;} } public class A : IInterface { string TextProperty { get; set; } } public class B : IInterface { string TextProperty { get; set; } } public inferface IComplexInterface {