Compare commits

..

No commits in common. "4af09e64a38f0341d20d4745107f92a8f7ef555d" and "d22ef17e9160a30773fe050f62549b7d4ae7332c" have entirely different histories.

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 class ChangeTableQuestion
{ {
public Guid? RowId { get; set; } public Guid RowId { get; set; }
public Guid QuestionId { get; set; } public Guid QuestionId { get; set; }

View File

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