Mapster icon indicating copy to clipboard operation
Mapster copied to clipboard

RequireExplicitMapping option fails the compilation for same type-to-type mapping

Open jvmlet opened this issue 2 years ago • 0 comments

To reproduce :

 TypeAdapterConfig.GlobalSettings.RequireExplicitMapping = true;
class B{ 
 public int id;
}
[Mapper]
public interface IDemoMapping {
    B Map(B b);
}

jvmlet avatar Jan 24 '23 14:01 jvmlet