|
@@ -62,18 +62,21 @@ namespace GxPress.Repository.Implement.Topic
|
|
|
};
|
|
|
try
|
|
|
{
|
|
|
+ var topicGroupId = 0;
|
|
|
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));
|
|
|
+ topicGroupId = await _repository.InsertAsync(topicGroup);
|
|
|
+ await _repository.UpdateAsync(Q.Set(nameof(TopicGroup.Sort), topicGroupId).Where(nameof(TopicGroup.Id), topicGroupId));
|
|
|
transactionScope.Complete();
|
|
|
- result.Data = await _repository.GetAsync(id);
|
|
|
}
|
|
|
+ var topicGroupDto = await _repository.GetAsync(topicGroupId);
|
|
|
+ result.Data = topicGroupDto;
|
|
|
}
|
|
|
catch
|
|
|
{
|
|
|
result.Success = false;
|
|
|
result.Code = StatusCodeConst.ErrorCode.GetHashCode();
|
|
|
+ result.Msg = StatusCodeConst.ErrorMsg.GetDescriptionOriginal();
|
|
|
}
|
|
|
return result;
|
|
|
}
|