IRC_NewDev
he 2024-10-31 10:56:12 +08:00
parent 4e29d4094e
commit 520595796b
2 changed files with 2 additions and 2 deletions

View File

@ -549,7 +549,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class ChangeTableQuestion
{
public Guid RowId { get; set; }
public Guid? RowId { get; set; }
public Guid QuestionId { get; set; }

View File

@ -366,7 +366,7 @@ namespace IRaCIS.Core.Application.Service
}
foreach (var item in inDto.TableQuestionAnswer)
foreach (var item in inDto.TableQuestionAnswer.Where(x => x.RowId != null))
{
if (tableQuestionAnswerList.Any(x => x.QuestionId == item.QuestionId && x.RowId == item.RowId && x.TableQuestionId == item.TableQuestionId))