I have a stored procedure that has three parameters and I've been trying to use the following to return the results:

context.Database.SqlQuery<myEntityType>("mySpName", param1, param2, param3);

At first I tried using SqlParameter objects as the params but this didnt work and threw an SqlException with the following message:

Procedure or function 'mySpName' expects parameter '@param1', which was not supplied.

So my question is how you can use this method with a stored procedure that expects parameters?

Thanks.

link|improve this question

58% accept rate
What version of SQL Server are you using? I'm having trouble with code that works on 2008 in compat (90) mode, but when i run it against 2005 it fails with a syntax error. – Gats Feb 2 '11 at 17:18
@Gats - I had the same issue w/ SQL 2005. Add "EXEC" before the stored procedure name. I posted this info here for future reference: stackoverflow.com/questions/6403930/… – Dan Mork Jun 19 '11 at 17:26
feedback

4 Answers

up vote 22 down vote accepted

You should supply the SqlParameter instances in the following way:

context.Database.SqlQuery<myEntityType>("mySpName @param1, @param2, @param3", new SqlParameter("param1", param1), new SqlParameter("param2", param2), new SqlParameter("param3", param3));
link|improve this answer
How would you make this method work with nullable types? I tried this with nullable decimals, but when the decimals are null I get errors saying parameter is missing. However, the method below mentioned by @DanMork works find. – Paul Johnson Mar 15 at 20:11
feedback

Also, you can use the "sql" parameter as a format specifier:

context.Database.SqlQuery<MyEntityType>("mySpName @param1 = {0}", param1)
link|improve this answer
feedback

You guys are lifesavers, but as @Dan Mork said, you need to add EXEC to the mix. What was tripping me up was:

  • 'EXEC ' before the Proc Name
  • Commas in between Params
  • Chopping off '@' on the Param Defeinitions (not sure that bit is required though).

This is what works for me in SQL 2005:

context.Database.SqlQuery<EntityType>(
    "EXEC ProcName @param1, @param2", 
    new SqlParameter("param1", param1), 
    new SqlParameter("param2", param2));
link|improve this answer
1  
if the procedure is not returning a result set, then a better fit would probably be the Database.ExecuteSqlCommand instead. See example further down this page: msdn.microsoft.com/en-us/library/gg715124%28v=vs.103%29.aspx – AaronLS Nov 28 '11 at 22:03
feedback

I use this method:

var results = this.Database.SqlQuery<yourEntity>("EXEC [ent].[GetNextExportJob] {0}", ProcessorID);

I like it because I just drop in Guids and Datetimes and SqlQuery performs all the formatting for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.