Uat_Study
parent
9db7707255
commit
a06f2705e1
|
@ -2340,7 +2340,7 @@
|
||||||
根据用户Id获取用户详细信息[New]
|
根据用户Id获取用户详细信息[New]
|
||||||
</summary>
|
</summary>
|
||||||
<param name="id"></param>
|
<param name="id"></param>
|
||||||
<returns></returns>
|
<returns></returns>xiuga
|
||||||
</member>
|
</member>
|
||||||
<member name="M:IRaCIS.Application.Services.UserService.AddUser(IRaCIS.Application.Contracts.UserCommand)">
|
<member name="M:IRaCIS.Application.Services.UserService.AddUser(IRaCIS.Application.Contracts.UserCommand)">
|
||||||
<summary>
|
<summary>
|
||||||
|
|
|
@ -800,6 +800,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
var trialQCQuestionConfigureDatas = await _dbContext.TrialQCQuestionConfigure.Where(x => ids.Contains(x.Id)).ToListAsync();
|
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 })
|
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 })
|
.SelectMany(a => a.two.DefaultIfEmpty(), (c, d) => new { c = c.one, d })
|
||||||
|
.OrderBy(x=>x.d.ShowOrder)
|
||||||
.Select(o => new AnswerDto()
|
.Select(o => new AnswerDto()
|
||||||
{
|
{
|
||||||
QuestionName = o.d.QuestionName,
|
QuestionName = o.d.QuestionName,
|
||||||
|
|
Loading…
Reference in New Issue