Found a solution:
Mapper.Initialize( Conf => { Conf.ForSourceType<MyGreatViewModel>().AllowNullDestinationValues = true; } );
Thanks guys:)
Take care of your destination field types (remember that you need types with a null value, such as "Byte?")
source share