diff --git a/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs b/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs index bf8e527..fbfc4e7 100644 --- a/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs +++ b/src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs @@ -111,8 +111,7 @@ namespace Shentun.Peis.ImportLisResults public async Task ImportResultAsync(List input) { //设置结果 - lock (lockObject) - { + var list = (from patientRegister in await _patientRegisterRepository.GetQueryableAsync() join registerCheck in await _registerCheckRepository.GetQueryableAsync() on patientRegister.Id equals registerCheck.PatientRegisterId @@ -246,7 +245,7 @@ namespace Shentun.Peis.ImportLisResults await _registerCheckAppService.UpdateCheckResult(updateCheckResultDto); } - } + }