I am interested in using Dapper - but from what I can tell it only supports Query and Execute. I do not see that Dapper includes a way of Inserting and Updating objects.

Given that our project (most projects?) need to do inserts and updates, what is the best practice for doing Inserts and Updates alongside dapper?

Preferably we would not have to resort to the ADO.NET method of parameter building, etc.

The best answer I can come up with at this point is to use LinqToSQL for inserts and updates. Is there a better answer?

link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

We are looking at building a few helpers, still deciding on APIs and if this goes in core or not. See: http://code.google.com/p/dapper-dot-net/issues/detail?id=6 for progress.

In the mean time you can do the following

val = "my value";
cnn.Execute("insert Table(val) values(@val)", new {val});

cnn.Execute("update Table val = @val where Id = @id", new {val, id = 1});

etcetera

See also my blog post: That annoying INSERT problem

link|improve this answer
Thank you - very helpful links and examples. – Slaggg May 15 '11 at 4:47
feedback

you can do it in such way:

sqlConnection.Open();

string sqlQuery = "INSERT INTO [dbo].[Customer]([FirstName],[LastName],[Address],[City]) VALUES (@FirstName,@LastName,@Address,@City)";
sqlConnection.Execute(sqlQuery,
    new
    {
        customerEntity.FirstName,
        customerEntity.LastName,
        customerEntity.Address,
        customerEntity.City
    });

sqlConnection.Close();
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.