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:
@ -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() {
|
||||
|
Reference in New Issue
Block a user