Recently before some time I have created a blog post about list of blog post I have written about Petapoco Micro ORM. So one of the friend suggested I should write same kind of series post about Dapper Micro ORM so that reader of my blog can find the all the posts on same page. So that’s why I writing this blog post.
What is dapper:
Dapper is Micro ORM developed by Sam Saffron few years ago while...
Showing posts with label Micro-ORM. Show all posts
Showing posts with label Micro-ORM. Show all posts
Thursday, April 10, 2014
Thursday, March 14, 2013
CRUD operations with PetaPoco and ASP.NET MVC
In this post we are going to see how we can do CRUD operations with ASP.NET MVC and PetaPoco Micro ORM.
What is PetaPoco?
Petapoco is a tiny ORM developed by topten software. As per them it’s a tiny, fast, single-file micro-ORM for .NET and Mono.
Like Massive it's a single file that you easily add to any project
Unlike Massive it works with strongly typed POCO's
Like Massive, it now also...
Friday, June 24, 2011
PetaPoco with parameterised stored procedure and Asp.Net MVC
I have been playing with Micro ORMs as this is very interesting things that are happening in developer communities and I already liked the concept of it. It’s tiny easy to use and can do performance tweaks. PetaPoco is also one of them I have written few blog post about this. In this blog post I have...
Monday, June 20, 2011
PetaPoco with stored procedures
In previous post I have written that How we can use PetaPoco with the asp.net MVC. One of my dear friend Kirti asked me that How we can use it with Stored procedure. So decided to write a small post for that. So let’s first create a simple stored procedure for customer table which I have used in my...
Friday, June 17, 2011
Get started with ASP.NET MVC and PetaPoco
Micro ORM are having their pro and cons and right now its a buzz in the Microsoft.NET developers buzz. I personally like a Micro ORM Concept and I already posted some blog posts with asp.net mvc and dapper Micro ORM. Today I am going to explain how we can use PetaPoco in asp.net mvc application. First...
Thursday, May 19, 2011
Insert with Dapper Micro ORM and ASP.NET MVC 3
As I have already posted about the how to fetch data in my earlier post for Dapper ORM. In this post I am going to explain how we can insert data with the dapper ORM. So let’s extend the earlier post project. As explained in earlier post I have already created a class called CustomerDB this class will...
Monday, May 16, 2011
Playing with dapper Micro ORM and ASP.NET MVC 3.0
Some time ago Sam Saffron a lead developer from stackoverflow.com has made dapper micro ORM open source. This micro orm is specially developed for stackovewflow.com for keeping performance in mind. It’s very good single file which contains some cool functions which you can directly use in your browser....