|
@@ -6,11 +6,13 @@ using Datory;
|
|
|
using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Entity.Topic;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface.Topic;
|
|
|
using GxPress.Request.App.Topic;
|
|
|
+using GxPress.Result;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using SqlKata;
|
|
|
-
|
|
|
+using System.Transactions;
|
|
|
namespace GxPress.Repository.Implement.Topic
|
|
|
{
|
|
|
public class TopicGroupRepository : ITopicGroupRepository
|
|
@@ -51,11 +53,29 @@ namespace GxPress.Repository.Implement.Topic
|
|
|
/// </summary>
|
|
|
/// <param name="topicGroup"></param>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<bool> InsertAsync(TopicGroup topicGroup)
|
|
|
+ public async Task<AppResultJson<Entity.Topic.TopicGroup>> InsertAsync(TopicGroup topicGroup)
|
|
|
{
|
|
|
- var id = await _repository.InsertAsync(topicGroup) > 0;
|
|
|
- return await _repository.UpdateAsync(Q.Set(nameof(TopicGroup.Sort), id).Where(nameof(TopicGroup.Id), id)) >
|
|
|
- 0;
|
|
|
+ var result = new AppResultJson<Entity.Topic.TopicGroup>()
|
|
|
+ {
|
|
|
+ Code = StatusCodeConst.SucceedCode.GetHashCode(),
|
|
|
+ Success = true
|
|
|
+ };
|
|
|
+ try
|
|
|
+ {
|
|
|
+ using (var transactionScope = new TransactionScope())
|
|
|
+ {
|
|
|
+ var id = await _repository.InsertAsync(topicGroup);
|
|
|
+ await _repository.UpdateAsync(Q.Set(nameof(TopicGroup.Sort), id).Where(nameof(TopicGroup.Id), id));
|
|
|
+ transactionScope.Complete();
|
|
|
+ result.Data = await _repository.GetAsync(id);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+ result.Success = false;
|
|
|
+ result.Code = StatusCodeConst.ErrorCode.GetHashCode();
|
|
|
+ }
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
/// <summary>
|