Merge branch 'Test_IRC_Net8' of http://192.168.3.68:2000/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-10-31 13:51:46 +08:00
commit df04878154
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))