I created a lambda and tried to create one or one expression or another. With or (||) did not work. There, instead of || I've been adding Where. That's right? This is it now:
var resultado = db.T_CRM_StatusPDV
.Where(a => a.DT_TransacaoV < diaAnt)
.Where(b => b.DT_ControleV < dataControle)
.Where(c => c.DE_Cnpj == cnpj)
.Select(i => new { i.DE_Cnpj }).ToList();