Inquiry:
retorno = tarefaRep.GetAll(c => c.status == 0
&& c.id_empresa == idEmpresa
&& c.id_cliente.ToString().Equals(idCliente)
&& c.id_colaborador.ToString().Equals(idColaborador),
limit, ctx);
idCliente
and idColaborador
can be null, in this case I would like to return all records, what should I adjust?