0
I need to convert a List to Ilist with automapper knowing that both are in different classes and one of them has a constructor. Is that possible? I’m using the Automapper 6.2.2.
public class Pessoa
{
public int Id { get; set; }
public int Nome { get; set; }
}
public class MinhasPessoas
{
public List<Pessoa> Pessoas { get; set; }
}
public abstract class RegisterNewPessoas
{
public IList<Pessoa> Pessoas { get; set; }
RegisterNewPessoas(IList<Pessoa> pessoas)
{
Pessoas = pessoas;
}
}
Mapping:
CreateMap<MinhasPessoas, RegisterNewPessoa>()
.ConstructUsing(ps => new RegisterNewPessoa(//Converter as listas aqui));