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
continuous-integration/drone/push Build is passing
Details
commit
df04878154
|
@ -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; }
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue