|
@@ -6,6 +6,7 @@ using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Repository.Interface.SystemLabel;
|
|
|
using GxPress.Request.SystemLabel;
|
|
|
+using GxPress.Result.SystemLabel;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
|
namespace GxPress.Repository.Implement.SystemLabel
|
|
@@ -16,6 +17,7 @@ namespace GxPress.Repository.Implement.SystemLabel
|
|
|
private readonly IMapper _mapper;
|
|
|
private readonly string _connectionString;
|
|
|
private readonly string _databaseTypestr;
|
|
|
+ private readonly Repository<Entity.tede2.Media.MediaLable> mediaLableRepository;
|
|
|
public SystemLabelRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
|
|
|
{
|
|
|
_databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
|
|
@@ -25,6 +27,7 @@ namespace GxPress.Repository.Implement.SystemLabel
|
|
|
var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
|
|
|
_repository = new Repository<Entity.SystemLabel.SystemLabel>(database);
|
|
|
_mapper = mapper;
|
|
|
+ mediaLableRepository = new Repository<Entity.tede2.Media.MediaLable>(database);
|
|
|
}
|
|
|
|
|
|
public IDatabase Database => _repository.Database;
|
|
@@ -82,15 +85,23 @@ namespace GxPress.Repository.Implement.SystemLabel
|
|
|
return await _repository.UpdateAsync(query) > 0;
|
|
|
}
|
|
|
|
|
|
- public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
|
|
|
+ public async Task<IEnumerable<SystemLabelResult>> GetAllAsync()
|
|
|
{
|
|
|
- return await _repository.GetAllAsync(Q.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort)));
|
|
|
+ var result = await _repository.GetAllAsync<SystemLabelResult>(Q.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort)));
|
|
|
+ foreach (var item in result)
|
|
|
+ {
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.tede2.Media.MediaLable.LableId), item.Id);
|
|
|
+ //获取资源数量
|
|
|
+ item.ResourceCount = await mediaLableRepository.CountAsync(query);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
}
|
|
|
public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids)
|
|
|
{
|
|
|
return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids));
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
|
|
|
}
|
|
|
}
|