Hi All / very new to Auto-Mapper. i can map one to one objects but was wondering is it possible to map multiple objects to one object or multiple objects to multiple object
you can use modelMapper
@Autowired private ModelMapper modelMapper;
and in function
Desination desination = modelMapper.map(obj1, Desination.class); modelMapper.map(obj2, desination);