Merged PR 12196: Alphabetize Category List -ECN Module

Moved pipeline to align with other projects in same repo

Changed MSBuild task to be specific and added new MSBuild Release task

Sort GetCategories on CategoryName

Added comments back from feature 135470

Added ItemGroup to allow testing internal methods

Testing for internal methods

Related work items: #135470, #238416
This commit is contained in:
2025-03-05 19:27:20 +01:00
parent aa38d17daf
commit 55d3a96228
7 changed files with 36 additions and 4 deletions

View File

@ -390,7 +390,7 @@ public class ECN_DMO {
internal List<ECNCategory> GetCategories() {
List<ECNCategory> r = db.Query<ECNCategory>("ECNGetCategories", null, commandType: CommandType.StoredProcedure).ToList();
return r;
return r.OrderBy(l => l.CategoryName).ToList();
}
internal List<ECNArea> GetECNAreas() {