Ajout du tri pour le nombre de participant à une formation

develop
jboinembalome 4 years ago
parent 65afda1ab6
commit 5e3c971282
  1. 5
      EPAServeur/Services/FormationService.cs

@ -418,6 +418,11 @@ namespace EPAServeur.Services
return query.OrderBy(p => p.EstCertifiee);
else
return query.OrderByDescending(p => p.EstCertifiee);
case "participants":
if (asc.Value)
return query.OrderBy(p => p.ParticipationsFormation.Count);
else
return query.OrderByDescending(p => p.ParticipationsFormation.Count);
default:
if (asc.Value)
return query.OrderBy(p => p.Intitule);

Loading…
Cancel
Save