MonkeyOrm.MySql
0.4.5
See the version list below for details.
dotnet add package MonkeyOrm.MySql --version 0.4.5
NuGet\Install-Package MonkeyOrm.MySql -Version 0.4.5
<PackageReference Include="MonkeyOrm.MySql" Version="0.4.5" />
paket add MonkeyOrm.MySql --version 0.4.5
#r "nuget: MonkeyOrm.MySql, 0.4.5"
// Install MonkeyOrm.MySql as a Cake Addin #addin nuget:?package=MonkeyOrm.MySql&version=0.4.5 // Install MonkeyOrm.MySql as a Cake Tool #tool nuget:?package=MonkeyOrm.MySql&version=0.4.5
MonkeyOrm is a small, powerful open source ORM for the .NET platform.
Website: http://www.monkeyorm.com/ . Fork source code on github: https://github.com/Sinbadsoft/MonkeyOrm.
Some of MonkeyOrm features and design choices:
* Doesn’t pollute your code: no base classes to inherit from, no attributes and no xml config.
* Easy to adopt, easy to get rid off: No lock-in, it’s just your POCOs and plain old SQL.
* Stateless, no caching.
* Built-in CRUD: Create, Read, Update, Delete and Create-or-Update (aka Upsert).
* Transactions.
* Objects slicing on insertion with a black list or a white list.
* Bulk-fetching.
* Data streaming.
* Batch insertion, with fine-grained control on number of inserted objects per query.
* Blobbing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- MySql.Data (>= 6.5.4)
- Sinbadsoft.Lib.Model
NuGet packages (1)
Showing the top 1 NuGet packages that depend on MonkeyOrm.MySql:
Package | Downloads |
---|---|
Sinbadsoft.Lib.UserManagement
Simple lightweight membership provider for MySql. |
GitHub repositories
This package is not used by any popular GitHub repositories.
* Removed implicit conversion operator from AbstractConnectionFactory.
* Added protected parameterless constructors to IConnectionFactory implementors.