Popularity
6.6
Stable
Activity
4.2
-
836
100
303

Code Quality Rank: L2
Programming language: C#
License: Apache License 2.0
Tags: ORM     Database     SQL     Micro-orm     MVC    
Latest version: v5.0.1

NPoco alternatives and similar packages

Based on the "ORM" category.
Alternatively, view NPoco alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of NPoco or a related project?

Add another 'ORM' Package

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.