数据库里面的存储过程如下:
create PROCEDURE [dbo].[TestProcedure]
@tblName   nvarchar(30),     --数据库表名
@strGetFields nvarchar(100) = '*', -- 需要返回的列
@strOrder nvarchar(30)='',      -- 排序的字段名
@startIndex int=1,
@endIndex int=50,
@strWhere nvarchar(100) = '', -- 查询条件
@ResultCount int outputAS我用的是Codesmith 5.03版本,是不是我用的版本用问题?
数据库是SQL2005,究竟怎么样才能取得存储过程参数的Description呢?ParameterSchema.Description.ToString()为什么取不到?怪哦