From c82a8790e75af96c04ed37290fb33c6fb4928f35 Mon Sep 17 00:00:00 2001 From: Mike Phares Date: Wed, 19 Apr 2023 14:00:50 -0700 Subject: [PATCH] SQL Bug II --- Server/Repositories/InfinityQSRepository.cs | 4 ++-- Server/Repositories/InfinityQSV2Repository.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Server/Repositories/InfinityQSRepository.cs b/Server/Repositories/InfinityQSRepository.cs index bc6440d..783fca5 100644 --- a/Server/Repositories/InfinityQSRepository.cs +++ b/Server/Repositories/InfinityQSRepository.cs @@ -66,12 +66,12 @@ public class InfinityQSRepository : IInfinityQSRepository .AppendLine(" td.f_test td_test, ") .AppendLine(" td.f_name td_name, ") .AppendLine(" (select count(cl.f_part) ") - .AppendLine(" from [spcepiworld].[dbo].[ctrl_lim] cl, ") + .AppendLine(" from [spcepiworld].[dbo].[ctrl_lim] cl ") .AppendLine(" where cl.f_part = pd.f_part ") .AppendLine(" and cl.f_test = td.f_test ") .AppendLine(" ) cl_count, ") .AppendLine(" (select count(sl.f_part) ") - .AppendLine(" from [spcepiworld].[dbo].[spec_lim] sl, ") + .AppendLine(" from [spcepiworld].[dbo].[spec_lim] sl ") .AppendLine(" where sl.f_part = pd.f_part ") .AppendLine(" and sl.f_test = td.f_test ") .AppendLine(" ) sl_count, ") diff --git a/Server/Repositories/InfinityQSV2Repository.cs b/Server/Repositories/InfinityQSV2Repository.cs index 235d5b6..6366cb1 100644 --- a/Server/Repositories/InfinityQSV2Repository.cs +++ b/Server/Repositories/InfinityQSV2Repository.cs @@ -66,12 +66,12 @@ public class InfinityQSV2Repository : IInfinityQSV2Repository .AppendLine(" td.f_test td_test, ") .AppendLine(" td.f_name td_name, ") .AppendLine(" (select count(cl.f_part) ") - .AppendLine(" from [spcepiworld].[dbo].[ctrl_lim] cl, ") + .AppendLine(" from [spcepiworld].[dbo].[ctrl_lim] cl ") .AppendLine(" where cl.f_part = pd.f_part ") .AppendLine(" and cl.f_test = td.f_test ") .AppendLine(" ) cl_count, ") .AppendLine(" (select count(sl.f_part) ") - .AppendLine(" from [spcepiworld].[dbo].[spec_lim] sl, ") + .AppendLine(" from [spcepiworld].[dbo].[spec_lim] sl ") .AppendLine(" where sl.f_part = pd.f_part ") .AppendLine(" and sl.f_test = td.f_test ") .AppendLine(" ) sl_count, ")