|
@@ -82,7 +82,7 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
public async Task<IEnumerable<ArticleGroupUserListResult>> GetListAsync(int userId)
|
|
|
{
|
|
|
- string sql = $@"select * from tede_article_group where Id not in(SELECT ArticleGroupId FROM tede_article_group_user where UserId={userId}) and IsSystemDefault=0";
|
|
|
+ string sql = $@"select * from tede_article_group where Id not in(SELECT ArticleGroupId FROM tede_article_group_user where UserId={userId}) and IsSystemDefault=0 order by Sort desc";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|