PetaPoco is a tiny and fast micro-ORM for .NET and Mono.
I'm using the Save() method to insert or update records, but I would like to make it perform a bulk …
petapocoI am using Npgsql 3.0.3.0 and PetaPoco latest version. When I run this command: var dateCreated = DateTime.Now; // just an example …
c# postgresql npgsql petapocoI have a database table named Tags (Id, Name) from which I would like to select the ones where the …
orm petapoco npocoI want to be able to call a stored proc with named parameters in PetaPoco. In order to call a …
sql petapocoI have a stored procedure which returns back a table value. Here is my stored procedure: PROCEDURE [GetPermitPendingApproval] @permitYear int = …
stored-procedures petapocoTo me, PetaPoco's Database.Fetch and Database.Query seem to be doing the same thing. For example, var db = new …
c# petapocoWhen doing a Insert the variable id is returned as an object. However in my database it is an int …
c# .net petapocoI am having a project in which I have my API classes and in that project I have generated the …
petapoco