1

我会很感激一些帮助调试这个请。我有一个如下定义的存储过程

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)); 我不完全确定缺少什么类型以及在哪里。真的,任何解决这个问题的帮助都将不胜感激。提前致谢。

4

3 回答 3

0

(Name = "boxNumber", DbType = "Int")] string boxNumber

看起来您正在尝试将字符串转换为 int?

于 2013-04-04T18:22:05.217 回答
0

你不能在这里使用拆箱:

return ((int)(result.ReturnValue));

http://msdn.microsoft.com/en-us/library/yz2be5wk.aspx

应该是

return ((Int32.Parse(result.ReturnValue));

但是如果 result.ReturnValue 为 null 它也会抛出异常。

更安全

int a=0;
Int32.TryParse(result.ReturnValue, out a);
return a;

或明确检查 null 的 result.ReturnValue

于 2013-04-04T19:47:29.750 回答
0

当您调用存储过程时,请尝试以下操作:

ObjectResult<Nullable<int>> tmp;

tmp = GetValidPaymentBoxNumberLogID_Test (...

int identity = Convert.ToInt32(tmp.FirstOrDefault());

要不就

int identity = Convert.ToInt32(GetValidPaymentBoxNumberLogID_Test (...).FirstOrDefault());
于 2013-04-06T13:34:19.003 回答