(This code is using Dapper Dot Net in C#)

This code works:

var command = "UPDATE account SET priority_id = @Priority WHERE name = @Name";
connection_.Execute(command, new { Name = "myname", Priority = 10 } );

This code throws a SqlException:

class MyAccount 
{
    public string Name;
    public int Priority;
}

var command = "UPDATE account SET priority_id = @Priority WHERE name = @Name";
var acct = new MyAccount { Name = "helloworld", Priority = 10 };
connection_.Execute(command, acct);

System.Data.SqlClient.SqlException: Must declare the scalar variable "@Priority".

Why?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Implement your model with properties, not fields:

class MyAccount 
{
    public string Name { get; set; }
    public int Priority { get; set; }
}

Dapper looks at the properties of the object to get parameters, ignoring fields. Anonymous types work because they are implemented with properties.

link|improve this answer
1  
Interesting; we consider fields for the materialization, so maybe it is a little inconsistent that we don't allow then (public ones, at least), for parameterisation. Meh... You're right though - trivial to solve by correct use of properties. – Marc Gravell Nov 22 '11 at 18:26
That did it. Thanks! – sh-beta Nov 26 '11 at 23:15
@MarcGravell it does seem to violate the principle of least surprise. I'd vote to either change the behavior or document the requirement. – sh-beta Nov 26 '11 at 23:16
feedback

I also got a same problem with data type. When make a query with dynamic object that has a DateTime property, exception: The member CreatedDate of type System.Object cannot be used as a parameter value.

It worked when I used a POCO instead of dynamic later.

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.