Automapper copy List to List

北城以北 提交于 2019-12-29 12:12:30

问题


I have these classes :

public class Person {
    public int Id{ get; set ;}
    public string FirstName{ get; set ;}
    public string LastName{ get; set ;}
}

public class PersonView {
    public int Id{ get; set ;}
    public string FirstName{ get; set ;}
    public string LastName{ get; set ;}
}

I defined this :

Mapper.CreateMap<Person, PersonView>();
Mapper.CreateMap<PersonView, Person>()
    .ForMember(person => person.Id, opt => opt.Ignore());

That's work for this :

PersonView personView = Mapper.Map<Person, PersonView>(new Person());

I'd like make the same but for List<Person> to List<PersonView> but I don't find the right syntax.

Thanks


回答1:


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.




回答2:


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);



回答3:


You can also try like this:

var personViews = personsList.Select(x=>x.ToModel<PersonView>());

where

 public static T ToModel<T>(this Person entity)
 {
      Type typeParameterType = typeof(T);

      if(typeParameterType == typeof(PersonView))
      {
          Mapper.CreateMap<Person, PersonView>();
          return Mapper.Map<T>(entity);
      }

      return default(T);
 }


来源:https://stackoverflow.com/questions/8899444/automapper-copy-list-to-list

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!