SubSonic3.0使用存储过程查询时,不能使用output参数返回值的问题修改

  有个群友问SubSonic3.0执行存储过程时能不能使用output参数返回值,说测试过后获取不到返回值,早上有些时间所以就尝试修改了一下

  首先在数据库中创建一个存储过程

 CREATE PROCEDURE [OutValue]
@a int,
@b int,
@c int output
AS
Set @c = @a + @b
GO

  打开Settings.ttinclude模板,找到SPParam类,修改为下面代码

     public class SPParam{
public string Name;
public string CleanName;
public string SysType;
public string DbType;
/*
* 修 改 人:Empty(AllEmpty)
* QQ 群:327360708
* 博客地址:http://www.cnblogs.com/EmptyFS/
* 修改时间:2014-06-27
* 修改说明:添加存储过程说明参数,用于判断该参数是否是返回值
*********************************************/
public string Direction;
}

  打开SQLServer.ttinclude模板,找到GetSPParams函数,修改为下面代码

 List<SPParam> GetSPParams(string spName){
var result=new List<SPParam>();
string dbName = null; if(!String.IsNullOrEmpty(DatabaseName))
dbName = DatabaseName; string[] restrictions = new string[] { dbName , null, spName, null }; using(SqlConnection conn=new SqlConnection(ConnectionString)){
conn.Open();
var sprocs=conn.GetSchema("ProcedureParameters", restrictions);
conn.Close();
foreach(DataRow row in sprocs.Select("", "ORDINAL_POSITION")){
SPParam p=new SPParam();
p.SysType=GetSysType(row["DATA_TYPE"].ToString());
p.DbType=GetDbType(row["DATA_TYPE"].ToString()).ToString();
p.Name=row["PARAMETER_NAME"].ToString().Replace("@","");
p.CleanName=CleanUp(p.Name);
/*
* 修 改 人:Empty(AllEmpty)
* QQ 群:327360708
* 博客地址:http://www.cnblogs.com/EmptyFS/
* 修改时间:2014-06-27
* 修改说明:添加存储过程说明参数,用于判断该参数是否是返回值
*********************************************/
p.Direction=row["PARAMETER_MODE"].ToString();
result.Add(p);
}
}
return result;
}

  打开SubSonic3.0源码:Schema/StoredProcedure.cs,添加下面代码

         /// <summary>
/// 修 改 人:Empty(AllEmpty)
/// QQ 群:327360708
/// 博客地址:http://www.cnblogs.com/EmptyFS/
/// 修改时间:2014-06-27
/// 功能说明:执行存储过程,返回OutputValues
/// </summary>
public List<object> ExecuteReturnValue()
{
Provider.ExecuteQuery(Command);
return Command.OutputValues;
}

  如图:

  SubSonic3.0使用存储过程查询时,不能使用output参数返回值的问题修改

  打开StoredProcedures.tt模板,修改为下面代码

 <#@ template language="C#" debug="True" hostspecific="True"  #>
<#@ output extension=".cs" #>
<#@ include file="SQLServer.ttinclude" #>
<#
var sps = GetSPs();
if(sps.Count>){
#>
using System;
using System.Data;
using SubSonic.Schema;
using SubSonic.DataProviders; namespace <#=Namespace#>{
public partial class SPs{ <# foreach(var sp in sps){#>
public static StoredProcedure <#=sp.CleanName#>(<#=sp.ArgList#>){
StoredProcedure sp=new StoredProcedure("<#=sp.Name#>"); <#
foreach(var par in sp.Parameters){
//检查是否是输出参数
if(par.Direction == "INOUT")
{
#>
sp.Command.AddOutputParameter("<#=par.Name#>",-1,DbType.<#=par.DbType#>);
<#
}
else
{
#>
sp.Command.AddParameter("<#=par.Name#>",<#=par.CleanName#>,DbType.<#=par.DbType#>);
<#
}
}
#>
return sp;
}
<# }#> } }
<# }#>

  运行修改好的StoredProcedures.tt模板,生成存储过程函数

 using System.Data;
using SubSonic.Schema; namespace Solution.DataAccess.DataModel{
public partial class SPs{ public static StoredProcedure OutValue(int a,int b,int c){
StoredProcedure sp=new StoredProcedure("OutValue"); sp.Command.AddParameter("a",a,DbType.Int32);
sp.Command.AddParameter("b",b,DbType.Int32);
sp.Command.AddOutputParameter("c",-1,DbType.Int32);
return sp;
}
} }

  搞定后我们运行执行一下这段存储过程看看有没有返回我们想要的结果(1+2=?)

  SubSonic3.0使用存储过程查询时,不能使用output参数返回值的问题修改

  返回结果是3,正确

 版权声明:

  本文由AllEmpty原创并发布于博客园,欢迎转载,未经本人同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。如有问题,可以通过1654937@qq.com 联系我,非常感谢。

  发表本编内容,只要主为了和大家共同学习共同进步,有兴趣的朋友可以加加Q群:327360708 ,大家一起探讨。

  更多内容,敬请观注博客:http://www.cnblogs.com/EmptyFS/

上一篇:js原生bind()用法[注意不是jquery里面的bind()]


下一篇:趋势型指标——MACD