It would be much nicer if the table names were ordered alphabetically, inside the schema names.
1 Like
You should be able to do this with a SchemasFilter
:
services.AddPlugin(new AdminDatabaseFeature {
SchemasFilter = columns => columns.ForEach(x => x.Tables.Sort())
});