|
@@ -96,10 +96,24 @@ namespace GxPress.Repository.Implement.Group
|
|
|
/// <returns></returns>
|
|
|
public async Task<IEnumerable<GroupCategoryResult>> GetAllAsync(int parentId)
|
|
|
{
|
|
|
- var result = await _repository.GetAllAsync<GroupCategoryResult>(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), parentId).OrderByDesc(nameof(Entity.tede2.Group.GroupCategory.CreatedDate)));
|
|
|
+ var sql = $@"SELECT
|
|
|
+ *,
|
|
|
+ (SELECT
|
|
|
+ COUNT(1)
|
|
|
+ FROM
|
|
|
+ tede_group
|
|
|
+ WHERE
|
|
|
+ GroupCategroyId = a.Id) AS GroupCount
|
|
|
+ FROM
|
|
|
+ tede_group_piazza AS a where a.ParentId={parentId}
|
|
|
+ ORDER BY a.Sort DESC , a.CreatedDate DESC";
|
|
|
+ var databaseType = _databaseTypestr.ToEnum<DatabaseType>(DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result = await connection.QueryAsync<GroupCategoryResult>(sql);
|
|
|
foreach (var item in result)
|
|
|
{
|
|
|
- item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
|
|
|
+ //item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
|
|
|
item.ImageUrls = StringUtils.AddDomain(item.ImageUrls);
|
|
|
}
|
|
|
return result;
|