Top "Petapoco" questions

PetaPoco is a tiny and fast micro-ORM for .NET and Mono.

PetaPoco Insert - Fastest Method?

What is the fastest option for inserting records into the database: using which of these: Database.Insert(poco) Database.Insert(…

.net database insert petapoco
Pass table value param to stored procedure using PetaPoco

For while I am trying to call SQL Server 2008 R2 stored procedure using PetaPoco. My stored procedure accepts a table …

c#-4.0 stored-procedures sql-server-2008-r2 petapoco table-valued-parameters
Add/Insert style of petapoco vs dapper

I am delighted by this: // Insert a record with peta poco var a = new Article(); a.title="My new article"; …

dapper petapoco