Uat_Study
parent
9db7707255
commit
a06f2705e1
|
@ -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>
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue