Compare commits

..

No commits in common. "2edacc9ff5ebad1e72f48c1c53ed508b51e313aa" and "1937804e4761f2759e7e22d36b30e5bf5a2f56d9" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ namespace IRaCIS.Application.Services
var query = _readingClinicalDataRepository.AsQueryable();
if (inDto.StudyId != null)
{
query = query.Where(x => x.StudyId == inDto.StudyId.Value && x.TrialId==inDto.TrialId&&x.SubjectId==inDto.SubjectId);
query = query.Where(x => x.StudyId == inDto.StudyId.Value);
}
else
{