Stored Procedure returns incorrect scalar value of -1, instead of return value

后端 未结 4 661
日久生厌
日久生厌 2021-01-02 20:36

I am trying to return a scalar value from a stored procedure. I actually want to return the ID of a newly created record, but I have simplified my problem down to a stored p

相关标签:
4条回答
  • 2021-01-02 21:02

    I've just implemented another option in my project. I feed in another output parameter for @return.

    0 讨论(0)
  • 2021-01-02 21:04

    When you execute ObjectContext.ExecuteFunction the result is:

    from MSDN: discards any results returned from the function; and returns the number of rows affected by the execution

    I.e. it doesn't return the output parameter, because it doesn't know there is one. Besides, as you have called SET NOCOUNT ON; in your stored procedure, it doesn't even return the number of affected rows, thus you get the -1.

    So, you must do two changes:

    1. change your procedure so that it doesn't return the value, but selects it, i.e. instead of RETURN @return do SELECT @return AS alias. NOTE that you need the "AS alias" part. The alias can be whatever column name you want.
    2. change the mapping of the stored procedure, so that it expects an int32 value. If you have doubt, refer to this Q&A.

    In this way you'll read the return value as a result set, instead of a return value.

    0 讨论(0)
  • 2021-01-02 21:08

    to solve this entity framework issue and assuming you already have a stored procedure working and you don't want to fix the places where it works good using other ways then EF you can replace the:

    RETURN(0)
    

    with:

    BEGIN
        SELECT(0)
        RETURN(0)
    END
    

    that is if its a part of an IF sentence,
    theמ go to: EF model (.edmx) -> Model Browser -> Function Imports -> (doubl click your func) ->Scalars -> Int32

    now your return value is:

    ObjectResult<Nullable<int>>
    

    you can receive it by writing:

    int? response = 0;
    response = myEntity.myStoredProcedure(var1, var2).FirstOrDefault();
    

    or in pics:
    1.
    Model Browser
    2.
    Function Imports
    3.
    Scalars

    doing all this makes the EF model (.edmx) also supporting the 'Update Model from Database...' and you can update it without worry to changes you just made.

    0 讨论(0)
  • 2021-01-02 21:26

    Thank you, DavidG for the article. It got me started down the right path. So what I did to solve this was change my Stored Procedure to return an ObjectResult<int?> instead of an int. Then I did a SingleOrDefault() on the results of the Stored Procedure call, which yielded my int return value. Like this:

    Stored Proc:

    -- RETURN @return does not work. Can't return a scalar value  
    SELECT @return  -- This returns a result set with a single object that contains an int.
    

    Then, my generated code looks like above but instead of returning an int it returns an ObjectResult<int?>

    and I read the results like this:

    var id = myDbContext.My_Return_Int(123).SingleOrDefault();
    
    0 讨论(0)
提交回复
热议问题