SkillAgentSearch skills...

NPoco

Simple microORM that maps the results of a query onto a POCO object. Project based on Schotime's branch of PetaPoco

Install / Use

/learn @schotime/NPoco
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

NPoco

NuGet

Welcome to the NPoco! NPoco is a fork of PetaPoco based on Schotime's branch with a handful of extra features.

Getting Started: Your first query

public class User 
{
    public int UserId { get;set; }
    public string Email { get;set; }
}

IDatabase db = new Database("connStringName");
List<User> users = db.Fetch<User>("select userId, email from users");

This works by mapping the column names to the property names on the User object. This is a case-insensitive match.
There is no mapping setup needed for this (query only) scenario.

Checkout the Wiki for more documentation.

View on GitHub
GitHub Stars879
CategoryData
Updated11d ago
Forks309

Languages

C#

Security Score

100/100

Audited on Mar 16, 2026

No findings