Scalar Value from stored procedure via Entity Framework
Asked Answered
F

1

9

I have found a few articles like this one: http://devtoolshed.com/using-stored-procedures-entity-framework-scalar-return-values

Yet when I take the step to create a function import for a int32 scalar, this is what gets generated:

 public ObjectResult<Nullable<global::System.Int32>> MyStoredProcedure(Nullable<global::System.Int32> orderId)
    {
        ObjectParameter orderIdParameter;
        if (orderId.HasValue)
        {
            orderIdParameter = new ObjectParameter("OrderId", orderId);
        }
        else
        {
            orderIdParameter = new ObjectParameter("OrderId", typeof(global::System.Int32));
        }

        return base.ExecuteFunction<Nullable<global::System.Int32>>("MyStoredProcedure", orderIdParameter);
    }

I am able to call the procedure with this, but am not able to get to the underlying scalar:

ObjectResult<int?> result = myEntities.MyProcedure(orderId);

In the code examples I have seen, I should get context.MyProcedure().SingleOrDefault().

Fourteen answered 22/11, 2011 at 17:9 Comment(0)
C
17

Try this:

int? result = myEntities.MyProcedure(orderId).FirstOrDefault();
Crease answered 29/1, 2013 at 20:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.