I have a mapping along the lines of this.
Try that...
public void Override(ModelMapper modelMapper) { modelMapper.Class(c => { c.ManyToOne(m => m.FKObj, r => { r.Column("FKColumn"); r.NotFound(NotFoundMode.Ignore); // THIS IS IMPORTANT!!! }); }); }