Open anikolaienko opened 2 years ago
I want to be able to map from more than one class:
mapper.add(FromClassA, FromClassB, ToClassC) target_obj = mapper.multimap(obj1, obj2) # or target_obj = mapper.to(TargetType).multimap(obj1, obj2)
I don't have specific test cases for this and not sure should this should work without producing unexpected behaviour.
I want to be able to map from more than one class: