I have a List of Assets that contains a list of Accessories
I would like to filter all the Assets that the accessories (ID_ACESSORIES) are inside an int list.
Follow the code;
//Lista com todos os ID_ACESSORIOS que tenho que filtrar
List<int> idAcessoriosFiltro = model.AcessoriosFiltroList.Where(a => a.Selecionado == true).Select(b => b.ID_ACESSORIO).ToList();
//A variavel retorno contem todos os ativos que preciso filtrar
List<Ativo> retorno = _Service.FiltrarAtivos(Mapper.Map<RelatorioAtivosFiltroViewModel, AtivoFiltro>(model));