|
@@ -11,6 +11,7 @@ using GxPress.Request.ArticleGroupUser;
|
|
|
using GxPress.Result.ArticleGroupUser;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using Datory;
|
|
|
+using System.Transactions;
|
|
|
|
|
|
namespace GxPress.Repository.Implement
|
|
|
{
|
|
@@ -59,7 +60,40 @@ 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);
|
|
|
+ }
|
|
|
+ transactionScope.Complete();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
/// 删除用户频道
|
|
|
/// </summary>
|