|
@@ -1,6 +1,7 @@
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Threading.Tasks;
|
|
|
+using System.Transactions;
|
|
|
using AutoMapper;
|
|
|
using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Exceptions;
|
|
@@ -59,7 +60,39 @@ namespace GxPress.Repository.Implement
|
|
|
};
|
|
|
return await _repository.InsertAsync(articleGroupUserEntity);
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 添加
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<bool> InsertAsync(ArticleGroupUserInNewRequest request)
|
|
|
+ {
|
|
|
+ var user = await _userRepository.GetAsync(request.UserId);
|
|
|
+ if (user == null)
|
|
|
+ throw new BusinessException("用户不存在");
|
|
|
+ try
|
|
|
+ {
|
|
|
+ using (var transactionScope = new TransactionScope())
|
|
|
+ {
|
|
|
+ //删除
|
|
|
+ await _repository.DeleteAsync(Q.Where(nameof(ArticleGroupUser.UserId), request.UserId));
|
|
|
+ foreach (var item in request.ArticleGroupId)
|
|
|
+ {
|
|
|
+ var articleGroupUserEntity = new ArticleGroupUser
|
|
|
+ {
|
|
|
+ ArticleGroupId = item,
|
|
|
+ UserId = request.UserId
|
|
|
+ };
|
|
|
+ await _repository.InsertAsync(articleGroupUserEntity);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
/// 删除用户频道
|
|
|
/// </summary>
|
|
@@ -86,7 +119,7 @@ namespace GxPress.Repository.Implement
|
|
|
{
|
|
|
listArray.Add(new ArticleGroupUserListResult() { Id = 0, UserId = request.UserId, ArticleGroupId = item.Id, ArticleGroupName = item.Name, StyleCss = item.StyleCss, IsSystemDefault = item.IsSystemDefault });
|
|
|
}
|
|
|
- var list = await _repository.GetAllAsync(Q.Where(nameof(ArticleGroupUser.UserId), request.UserId));
|
|
|
+ var list = await _repository.GetAllAsync(Q.Where(nameof(ArticleGroupUser.UserId), request.UserId).OrderBy(nameof(ArticleGroup.CreatedDate)));
|
|
|
listArray.AddRange(list.Select(n => _mapper.Map<ArticleGroupUserListResult>(n)).ToList());
|
|
|
foreach (var item in listArray)
|
|
|
{
|