Remove two or more itens form a list with predicate
I have a list that returns all status values except the exported one, however, I would like a list that returns all values except the exported and the authorized one (2 Status) // Getting all status except the exported one // GetStarusApontamento is a IEnumerable var listStatus = this._apontamentoAppService.GetStatusApontamento().Where(x=>x != StatusApontamento.Exported).ToList(); How would I do … Read more
