Skip to content

Commit

Permalink
Order item names.
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-tkachev committed Apr 13, 2016
1 parent 3f909ba commit 9dc2b4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/SchemaAndCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ ExplorerItem GetProcedures(string header, ExplorerIcon icon, List<ProcedureSchem

return ret;
})
.OrderBy(p => p.Text)
.ToList(),
};

Expand Down Expand Up @@ -566,6 +567,7 @@ ExplorerItem GetTables(string header, ExplorerIcon icon, IEnumerable<TableSchema

return ret;
})
.OrderBy(t => t.Text)
.ToList()
};

Expand Down

0 comments on commit 9dc2b4d

Please sign in to comment.