I have a pretty straightforward POCO that contains a property called Image of type byte[]. I'm finding that if this field is set to null, and the Entity Framework object I'm mapping to already has a value for the Image property, the EF object value is not being set to null after I call Mapper.Map.
Is there something specific I should be doing to force AutoMapper to do this, or should I be doing this manually?
Using version 2.2.1 of AutoMapper.
Thanks, Gary