Is it possible to add mapping from interface to class? For example this throws error "[NGM025] Mapping from IA1 to A2 not supported":
public class A1 : IA1
{
public string P1 { get; set; }
}
public interface IA1
{
public string P1 { get; set; }
}
public class A2
{
public string P1 { get; set; }
}
/////////////////////////////////////////////
IA1 a1 = new A1() { P1 = "P1" };
A2 a2 = a1.Map<A2>();
Is it possible to add mapping from interface to class? For example this throws error "[NGM025] Mapping from IA1 to A2 not supported":