-1
- _release is a List with several records
- x.located is a bool
- x.Description is a string
I’m trying this way
if (_lancamento.Where(x => x.Localizado && x.descricao.Contains(new List<string> { "6", "9" }))){....}
I do not know if it is possible to do a validation in this way, I tried several ways in lambda and I could not make it work. Obviously the return I want from this if is a True or False
It worked right, thanks
– Anorak