1
Consultation:
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 which case I would like to return all records, which I must adjust?
alessandre made a modification that I believe will improve the understanding of your question. if you do not agree let me know what return as it was :)
– Marconi