Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The data reader has more than one field error while calling a procedure that returns an integer

I was trying to get status code of a stored procedure execution when encountered this error:

An exception of type 'System.Data.Entity.Core.EntityCommandExecutionException' occurred in EntityFramework.SqlServer.dll but was not handled in user code

Additional information: The data reader has more than one field. Multiple fields are not valid for EDM primitive or enumeration types.

I have rewritten the procedure to do absolutely nothing but to return an integer value, this is how it looks now:

ALTER Procedure [dbo].[test]
(
    @i int,
    @a nvarchar(max),
    @b nvarchar(max),
    @c nvarchar(max),
    @d nvarchar(max)
)
As
Begin
    SET NOCOUNT ON

    return 1
End

But I still get the same error at run-time when reaching the procedure call at line:

this.Database.SqlQuery<int>("test @i, @a, @b, @c, @d", p_i, p_a, p_b, p_c, p_d).FirstOrDefault();

Is there anyway to figure out what these fields are, and where they are coming from? And how should I get the returned value?

I've tried to specify a tuple of two strings as the T just to look into these values, but with no success...

Updates:
Select 1 instead of return 1 makes the function usable, the only question remains what are these mysterious fields that are returned to the data reader?

like image 283
Jyrkka Avatar asked Aug 04 '15 00:08

Jyrkka


1 Answers

Database.SqlQuery<T>() expects some kind of result set (e.g. SELECT). Under the hood, it uses DbCommand.ExecuteReader(), and when T is scalar, it expects the result set to have exactly one field -- but if the result set has more than one field, or if there are no fields, it throws the exception that you encountered.

The return value can be retrieved by passing a DbParameter to Database.SqlQuery<T>() and setting Direction = ParameterDirection.ReturnValue as seen in these examples:

  • How can I get return value of stored procedure when using SqlDataReader?
  • http://blogs.msdn.com/b/diego/archive/2012/01/10/how-to-execute-stored-procedures-sqlquery-in-the-dbcontext-api.aspx

FYI, if you just want the return value, but you don't want a result set, use ExecuteSqlCommand with a DbParameter.

  • EF6 stored procedure with no results
like image 167
jjj Avatar answered Oct 19 '22 23:10

jjj