Compare commits

..

No commits in common. "468f7c7070f01253496d0a9cd92bf2b59e3c8ca9" and "cc17816dae0cf4f133d14011042d2a588be46927" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ namespace IRaCIS.Core.Application.Service
}).ToPagedListAsync(inQuery);
var info = await _trialIdentityUserRepository.Where(t => t.IdentityUserId == inQuery.IdentityUserId,false,true).Select(t =>
var info = await _trialIdentityUserRepository.Where(t => t.IdentityUserId == inQuery.IdentityUserId).Select(t =>
new { t.IdentityUser.CreateTime, t.IdentityUser.UserCeateSource, t.Trial.ResearchProgramNo,t.Trial.ExperimentName, t.Trial.TrialCode }).FirstOrDefaultAsync();
return ResponseOutput.Ok(list, info);