Hi,
If I have a stored procedure written as follows:
CREATE PROCEDURE dbo.GG
@Var as int = null
AS
than codesmith doesn't detect the default value for that command parameter. It only works with the following syntax:
CREATE PROCEDURE dbo.GG
@Var int = null
AS