Automapper copy List to List
Once you've created the map (which you've already done, you don't need to repeat for Lists), it's as easy as:
List<PersonView> personViews =
Mapper.Map<List<Person>, List<PersonView>>(people);
You can read more in the AutoMapper documentation for Lists and Arrays.
For AutoMapper 6< it would be:
In StartUp:
Mapper.Initialize(cfg => {
cfg.CreateMap<Person, PersonView>();
...
});
Then use it like this:
List<PersonView> personViews = Mapper.Map<List<PersonView>>(people);