I'm trying to get started with Dapper in an exisiting MVC3 project and although it looks very easy to use, I can't seem to find any tutorials on how to set it up intially. Any links or suggestions would be highly appreciated.

Thanks a lot.

link|improve this question
feedback

5 Answers

That is, in part, because there is nothing to set up - all you need is a database (which it doesn't care about) and some classes (which it doesn't care about).

The core methods just take parameterised SQL, and are deliberately close to LINQ-to-SQL's sql-based methods (hint: we use dapper as a direct drop-in replacement whenever we get isues with LINQ-to-SQL).

If you want a few examples, the "tests" project contains examples of the core APIs.

If you mean "how do I add dapper" - two choices; a single file added to your project, or a nuget package. The nuget pacakge tends to lag a little bit, but not much.

But ultimately, usage is just:

// get all open orders for this customer
var orders = connection.Query<Order>(
    "select * from Orders where CustomerId = @custId and Status = 'Open'",
    new { custId = customerId }).ToList();

where your Orders class has properties with names matching the database (it is a very direct map). No attributes are required; no special tooling is required. In our case, we tend to use LINQ-to-SQL generated classes with it, or a specific class created for some subset of columns (or composite between several tables, etc).

link|improve this answer
feedback

sure, this one: http://beyondrelational.com/blogs/jalpesh/archive/2011/05/16/playing-with-dapper-micro-orm-and-asp-net-mvc-3-0.aspx and this one: http://www.tutorialbin.com/tutorials/222251/insert-with-dapper-micro-orm-and-aspnet-mvc-3-dotnetjalps-sql

link|improve this answer
Thanks for the quick response. I've seen these articles before; looks like these are the only two out there. It's very poorly written...Frankly I don't even see how Dapper is being used there. Perhaps I'm missing something but the guy has just written a Repo class on top of ADO.NET....I just don't see a single element of Dapper in there and/or how he's using the SqlMapper class in his project. – Robert C. Jun 5 '11 at 6:01
1  
Yeah... considering SO is using Dapper, I was expecting a lot more resources and SO questions about it. – Developr Jul 19 '11 at 4:13
feedback

There aren't many out there, but I have come a cross one simple "getting started" tutorial here:

http://dotnet.dzone.com/news/playing-dapper-micro-orm-and?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+zones%2Fdotnet+(.NET+Zone)

Here is also a blogger that has written a couple articles on the subject:

http://weblogs.asp.net/jalpeshpvadgama/archive/tags/Dapper/default.aspx

link|improve this answer
feedback

Dapper actually works by extending the IDbConnection interface. You have to explicitly create the connection, call any of dapper's extension methods on it, and then close the connection when you're through.

You can take another look at the code in Marc Gravell's answer.

The job that Dapper does might seem lost when you read code samples with all the connection management stuff. Just wade through all that and look at where an extension method is called on the connection object.

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.