Popularity
1.2
Growing
Activity
0.0
Stable
6
5
0

Description

Created by a geek who became a business owner of a 100+ person company, Zonkey is a middle-sized ORM.

* One table == one class * a dataclass is both decorated and inherits from a base * base class provides .Save() instance method which Creates or Updates as appropriate, .Delete(), etc * an "adapter" class pairs with the dataclass for Get operations * supports async * supports IoC (Inversion of Control) for testability * works with all major SQL dbs (SQL server, MySQL, etc.) * some text file / CSV support

Programming language: C#
License: MIT License
Tags: ORM     Database     SQL     SqlServer     MySQL     Micro-orm     DAL    

Zonkey alternatives and similar packages

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

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

Add another 'ORM' Package

README

Quality Gate Status

Nuget Nuget Nuget Nuget

Zonkey

Zonkey ORM (and then some) libraries for .Net

.

Upgrading from 4.x and older versions of Zonkey

You can you Visual Studio RegEx Find/Replace with the following values to automatically update the SetFieldValue() calls in your DCs.

FIND

SetFieldValue\(("\w+"), ref (\w+), value\);

REPLACE

SetFieldValue(ref $2, value);