diff --git a/AMESCoreStudio.WebApi/Controllers/BAS/StationsesController.cs b/AMESCoreStudio.WebApi/Controllers/BAS/StationsesController.cs index 85c53f2..2e06fa9 100644 --- a/AMESCoreStudio.WebApi/Controllers/BAS/StationsesController.cs +++ b/AMESCoreStudio.WebApi/Controllers/BAS/StationsesController.cs @@ -39,7 +39,7 @@ namespace AMESCoreStudio.WebApi.Controllers.BAS { IQueryable q = _context.Stationses; q = q.Where(p => p.UnitNo != "0"); - q = q.OrderBy(p => p.StationName); + q = q.OrderBy(p => p.UnitNo + p.StationName); var Stations = await q.ToListAsync();