0
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; }
And I need to move the valuables to another list of the kind.
public List<DetalheViagemDto> Viagens { get; set; }
Is there any way to do it without looping?
passagemAprovadaEdiDto.Viagens = new System.Collections.Generic.List<DetalheViagemDto>()
{
// Incluir a lista de objeto em vez de fazer um a um ...
new DetalheViagemDto()
{
}
};
DetalheViagemDto
inherits fromDetalheViagem
or there are only properties in common?– vinibrsl
Only properties, but not all are with the same name, for example, I have Idviagem in one and the other only Id ...
– Marco Souza