This commit is contained in:
he
2022-06-21 13:34:18 +08:00
parent 1e82236d35
commit cc6f42264e
2 changed files with 6 additions and 1 deletions
@@ -189,7 +189,7 @@ namespace IRaCIS.Application.Services
{
await _readingQuestionTrialRepository.UpdatePartialFromQueryAsync(inDto.ReadingQuestionTrialId, x => new ReadingQuestionTrial()
{
AnswerGroup = inDto.AnswerGroup.ToString()
AnswerGroup = JsonConvert.SerializeObject(inDto.AnswerGroup)
}) ;
var result = await _readingQuestionTrialRepository.SaveChangesAsync();