Let's just suppose I have a valid need for directly executing a sql command in Entity Framework. I am having trouble figuring out how to use parameters in my sql statement. The following example (not my real example) doesn't work.

var firstName = "John";
var id = 12;
var sql = @"Update [User] SET FirstName = @FirstName WHERE Id = @Id";
ctx.Database.ExecuteSqlCommand(sql, firstName, id);

The ExecuteSqlCommand method doesn't allow you to pass in named parameters like in ADO.Net and the documentation for this method doesn't give any examples on how to execute a parameterized query.

How do I specify the parameters correctly?

link|improve this question

feedback

4 Answers

up vote 31 down vote accepted

Turns out that this works.

var firstName = "John";
var id = 12;
var sql = @"Update [User] SET FirstName = {0} WHERE Id = {1}";
ctx.Database.ExecuteSqlCommand(sql, firstName, id);
link|improve this answer
This will work, but this mechanism allows for SQL injection and also prevents the database from reusing an execution plan when the statement shows up again but with different values. – Greg B Nov 4 '11 at 16:52
8  
@GregB I do not think you are correct here. I have tested that it won't allow me to, for instance, terminate a string literal early. Moreover, I looked at the source code and found that it's using DbCommand.CreateParameter to wrap up any raw values into parameters. So no SQL injection, and a nice succinct method invocation. – Josh Gallagher Nov 17 '11 at 11:52
@JoshGallagher Yes, you're right. I was thinking of a string.Format scenario putting this together. – Greg B Dec 7 '11 at 22:07
feedback

Try this:

var sql = @"Update [User] SET FirstName = @FirstName WHERE Id = @Id";

ctx.Database.ExecuteSqlCommand(
    sql,
    new SqlParameter("firstName", firstname),
    new SqlParameter("id", id));
link|improve this answer
feedback

Try this (edited):

ctx.Database.ExecuteSqlCommand(sql, new SqlParameter("FirstName", firstName), 
                                    new SqlParameter("Id", id));

Previous idea was wrong.

link|improve this answer
When I do that I get the following error: "No mapping exists from object type System.Data.Objects.ObjectParameter to a known managed provider native type." – jessegavin Mar 29 '11 at 15:27
Sorry my mistake. Use DbParameter. – Ladislav Mrnka Mar 29 '11 at 15:50
2  
DbParameter is abstract. You'll have to use SqlParameter or use a DbFactory to create a DbParameter. – jrummell Jul 15 '11 at 15:14
feedback

You can either:

  1. Pass raw arguments and use the {0} syntax or
  2. pass DbParameter subclass arguments and use @ParamName syntax.

If you use the first syntax, EF will actually wrap your arguments with DbParamater classes, assign them names, and replace {0} with the generated parameter name.

The first syntax if preferred because you dont need to use a factory or know what type of DbParamaters to create (SqlParameter, OracleParamter, etc.).

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.