SP Parameters on new line?
snkscore
Posts: 8
SQL Refactor changes:
ALTER PROCEDURE [dbo].[Badges_Get]
@BadgeCode varchar(50)
AS
into:
ALTER PROCEDURE [dbo].[Badges_Get] @BadgeCode varchar(50)
AS
This is not an issue if there is more than 1 parameter.
I have looked over the settings, is there any way that I can get it to put the parameters on new lines even if there is only 1 parameter?
ALTER PROCEDURE [dbo].[Badges_Get]
@BadgeCode varchar(50)
AS
into:
ALTER PROCEDURE [dbo].[Badges_Get] @BadgeCode varchar(50)
AS
This is not an issue if there is more than 1 parameter.
I have looked over the settings, is there any way that I can get it to put the parameters on new lines even if there is only 1 parameter?
Comments
SQL Refactor does not currently hold any options to layout parameters on new line when there is just one single parameter.
However, I can add it as a feature request which will be addressed in our future version if it turns out to be a popular request.
Thanks,
Tanya