Uat_Study
he 2022-08-29 16:22:51 +08:00
parent 53db0fefa6
commit b9188d379d
1 changed files with 1 additions and 1 deletions

View File

@ -1506,7 +1506,7 @@ namespace IRaCIS.Application.Services
public async Task<IResponseOutput> SubmitTableQuestion(SubmitTableQuestionInDto inDto)
{
var tableQuestionIds = inDto.AnswerList.Select(x => x.TableQuestionId).ToList();
var questions = await _readingTableQuestionTrialRepository.Where(x => tableQuestionIds.Contains(x.Id) && x.MaxRowCount != null).ToListAsync();
var questions = await _readingTableQuestionTrialRepository.Where(x => tableQuestionIds.Contains(x.Id) && x.MaxRowCount != null&&x.MaxRowCount!=0).ToListAsync();
foreach (var item in questions)
{