How can I map a list from one type to another list of another type?
I'm getting an object list of type
public List<DetalheViagem> DetalheViagems { get; set; }
I need to pass the values to another list of type.
public List<DetalheViagemDto> Viagens { get; set; }
Is there any way to do this without being looped?
passagemAprovadaEdiDto.Viagens = new System.Collections.Generic.List<DetalheViagemDto>()
{
// Incluir a lista de objeto em vez de fazer um a um ...
new DetalheViagemDto()
{
}
};