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.
|
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. | |||
|
feedback
|
|
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:
where your | |||
|
feedback
|
|
Another blog post: http://www.tritac.com/bp-24-dapper-dot-net-by-example | |||
|
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 | |||||||
feedback
|
|
There aren't many out there, but I have come a cross one simple "getting started" tutorial here: Here is also a blogger that has written a couple articles on the subject: http://weblogs.asp.net/jalpeshpvadgama/archive/tags/Dapper/default.aspx | |||
|
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. | |||
|
feedback
|