我会很感激一些帮助调试这个请。我有一个如下定义的存储过程
ALTER PROCEDURE [dbo].[usp_ProcessBoxNumberPaymentInfo_Test]
-- Add the parameters for the stored procedure here
@boxNumber int,
@ProcessDate DateTime,
@BoxType Varchar(50),
@PaymentProcessDate DateTime,
@Identity int OUTPUT
BEGIN
Declare @NewID as int
-- INSERT CODE GOES HERE
Set @NewID = SCOPE_IDENTITY()
-- ANOTHER INSERT CODE GOES HERE
SELECT @Identity = SCOPE_IDENTITY()
END
在代码方面,我的 DataContext 类中有以下方法来执行我的存储过程,传递指定的有效值。
[global::System.Data.Linq.Mapping.FunctionAttribute(Name = "dbo.usp_ProcessBoxNumberPaymentInfo_Test")]
public int GetValidPaymentBoxNumberLogID_Test(
[global::System.Data.Linq.Mapping.ParameterAttribute(Name = "boxNumber", DbType = "Int")] string boxNumber,
[global::System.Data.Linq.Mapping.ParameterAttribute(Name = "ProcessDate", DbType = "DateTime")] DateTime ProcessDate,
[global::System.Data.Linq.Mapping.ParameterAttribute(Name = "BoxType", DbType = "VarChar(50)")] string BoxType,
[global::System.Data.Linq.Mapping.ParameterAttribute(Name = "PaymentProcessDate", DbType = "DateTime")] DateTime PaymentProcessDate,
[global::System.Data.Linq.Mapping.ParameterAttribute(Name = "Identity", DbType = "Int")] ref System.Nullable<int> identity)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), boxNumber, ProcessDate, BoxType, PaymentProcessDate, identity);
identity = ((System.Nullable<int>)(result.GetParameterValue(4)));
return ((int)(result.ReturnValue));
}
我遇到的问题是当我运行代码时,出现以下异常
指定的演员表无效
此错误在行返回时引发 ((int)(result.ReturnValue)); 我不完全确定缺少什么类型以及在哪里。真的,任何解决这个问题的帮助都将不胜感激。提前致谢。