Parcourir la source

修改查询顺序

wang bao chen il y a 4 mois
Parent
commit
6aca21c805
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      DutyApp/ViewModels/DailyDutyRecordViewModel.cs

+ 1 - 1
DutyApp/ViewModels/DailyDutyRecordViewModel.cs

@@ -150,7 +150,7 @@ namespace DutyApp.ViewModels
             var dailyDuty = await _dutyContext.DailyDutyRecords.
                 Include(x => x.Picture)
                 .Where(x => x.DutyDate == maxDay)
-                .OrderBy(x => x.RecordId)
+                .OrderBy(x => x.Index)
                 .ToListAsync();
 
             if (dailyDuty.Count == 0)