centrado stepper y invertido orden de logs

This commit is contained in:
2025-01-30 00:44:04 -03:00
parent ccf909e825
commit 333ee5d326
2 changed files with 6 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ public class RepositorioLogs: RepositorioBase<RepositorioLogs> {
public IQueryable<Log>? ObtenerLogsPaginado(int pag) {
var con = Context;
var l = con.Logs.Skip(10*pag).Take(10);
var l = con.Logs.OrderByDescending(x=>x.Fecha).Skip(10*pag).Take(10);
return l;
}
}