Skip to content

Commit d2455eb

Browse files
author
Leonid
committed
Fix ef query
1 parent ac1a8b1 commit d2455eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eFormAPI/eFormAPI.Web/Services/EformReportsService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ public async Task<OperationDataResult<EformReportFullModel>> GetEformReport(int
267267
}
268268

269269
var eformReport = await _dbContext.EformReports
270-
.FirstOrDefaultAsync(x => x.TemplateId == templateId)
270+
.FirstOrDefaultAsync(x => x.TemplateId == templateId);
271271

272272
if (eformReport == null)
273273
{

0 commit comments

Comments
 (0)