var abc = Context.PersonSet.Include(p=> p!= null ? p.Child: null).ToList();
or
var abc = Context.PersonSet.Include(p=> p.Child != null ? p.Child: new Child()).ToList();