Uat_Study
he 2022-05-26 09:30:24 +08:00
parent 9db7707255
commit a06f2705e1
2 changed files with 2 additions and 1 deletions

View File

@ -2340,7 +2340,7 @@
根据用户Id获取用户详细信息[New]
</summary>
<param name="id"></param>
<returns></returns>
<returns></returns>xiuga
</member>
<member name="M:IRaCIS.Application.Services.UserService.AddUser(IRaCIS.Application.Contracts.UserCommand)">
<summary>

View File

@ -800,6 +800,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
var trialQCQuestionConfigureDatas = await _dbContext.TrialQCQuestionConfigure.Where(x => ids.Contains(x.Id)).ToListAsync();
var collect = questionAnswers.GroupJoin(trialQCQuestionConfigureDatas, one => one.TrialQCQuestionConfigureId, two => two.Id, (x, y) => new { one = x, two = y })
.SelectMany(a => a.two.DefaultIfEmpty(), (c, d) => new { c = c.one, d })
.OrderBy(x=>x.d.ShowOrder)
.Select(o => new AnswerDto()
{
QuestionName = o.d.QuestionName,