30

可以从 .NET 调用标量值函数,如下所示:

SqlCommand cmd = new SqlCommand("testFunction", sqlConn); //testFunction is scalar
cmd.CommandType = CommandType.StoredProcedure;  
cmd.Parameters.Add("retVal", SqlDbType.Int);
cmd.Parameters["retVal"].Direction = ParameterDirection.ReturnValue;
cmd.ExecuteScalar();
int aFunctionResult = (int)cmd.Parameters["retVal"].Value;

我也知道可以以类似的方式调用表值函数,例如:

String query = "select * from testFunction(param1,...)"; //testFunction is table-valued
SqlCommand cmd = new SqlCommand(query, sqlConn);
SqlDataAdapter adapter = new SqlDataAdapter(cmd);
adapter.Fill(tbl);

我的问题是,表值函数可以像标量值函数一样被称为存储过程吗?(例如,复制我的第一个代码片段,调用表值函数并通过 ReturnValue 参数获取返回的表)。

4

1 回答 1

19

不,因为您需要选择它们。但是,您可以创建一个存储的 proc 包装器,这可能会破坏拥有表函数的意义。

于 2008-08-12T15:53:26.193 回答