Compare commits

..

No commits in common. "4fb7f6818daea33b35a3a855907ced3cec7950c6" and "2939290915674688c4c26d81f9e23fbcfcc3afaf" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

@ -1402,7 +1402,6 @@ namespace IRaCIS.Core.Infra.EFCore.Common
QcQuestionAnswerList = answerList.Join(trialQuestionNameList, t => t.TrialQCQuestionConfigureId, u => u.TrialQCQuestionConfigureId, (t, u) => new
{
t.Answer,
u.QuestionName,
u.ShowOrder
}).OrderBy(t => t.ShowOrder).ToList(),
@ -2809,7 +2808,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
//获取问题名称 组合成数组
var quesionList = await _dbContext.ReadingQuestionTrial.Where(t => taskQuestionAnswerList.Select(k => k.ReadingQuestionTrialId).Contains(t.Id)).IgnoreQueryFilters().Select(t => new
{
QuestionName=_userInfo.IsEn_Us?t.QuestionEnName: t.QuestionName,
t.QuestionName,
t.QuestionEnName,
QuestionId = t.Id,
t.DictionaryCode,