How do I make a lambda to bring only records containing the word Transfer? For example, in my example, there are 19 records, but 3 are not Transfers, so it should be 16. Below my code and my wrong lambda.
OfferV2[] traslado = ((OfferV2[])SessaoUtil.Recuperar("MontaTraslado"));
traslado = traslado.Where(x => x.).Contains("Traslado");