File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Doppler.HtmlEditorApi/Repositories.DopplerDb/Queries Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ string ThirdPartyApp
1919{
2020 public string GenerateSqlQuery ( ) => @"
2121DECLARE @IdThirdPartyApp INT;
22- SELECT @IdThirdPartyApp = IdThirdPartyApp FROM ThirdPartyApp WHERE Name = ' @ThirdPartyApp' ;
22+ SELECT @IdThirdPartyApp = IdThirdPartyApp FROM ThirdPartyApp WHERE Name = @ThirdPartyApp;
2323
2424INSERT INTO DynamicContentPromoCode (
2525 Type,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ string ThirdPartyApp
2020{
2121 public string GenerateSqlQuery ( ) => @"
2222DECLARE @IdThirdPartyApp INT;
23- SELECT @IdThirdPartyApp = IdThirdPartyApp FROM ThirdPartyApp WHERE Name = ' @ThirdPartyApp' ;
23+ SELECT @IdThirdPartyApp = IdThirdPartyApp FROM ThirdPartyApp WHERE Name = @ThirdPartyApp;
2424
2525UPDATE DynamicContentPromoCode
2626SET Type = @Type,
You can’t perform that action at this time.
0 commit comments