Popularity
1.6
Stable
Activity
0.0
Stable
28
3
5

Code Quality Rank: L4
Programming language: C#
License: MIT License
Tags: ORM     MySQL     SQLite     PostgreSQL     NetCore     Postgres    
Latest version: v1.2.7

Limebean alternatives and similar packages

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

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

Add another 'ORM' Package

README

LimeBean

Build status NuGet MIT License

RedBeanPHP-inspired Hybrid-ORM for .NET.

Available on NuGet Gallery

PM> Install-Package LimeBean

Get started in 2 minutes:

// Make an ADO.Net connection and create a BeanAPI from it.
var connection = new DbConnection(connectionString);
connection.Open();
var api = new BeanApi(connection);

// Get a row from a known record ID
int bookId = 7;
Bean row = api.Load("books", bookId);
string bookTitle = row.Get<string>("title");
Console.WriteLine(bookTitle);

// Add a new row to the database
Bean newRow = api.Dispense("books");
newRow
    .Put("title", "Cloud Atlas")
    .Put("author", "David Mitchell");
var newBookId = api.Store(newRow);
Console.WriteLine("New book ID: " + newBookId.ToString());

Supported Frameworks and Databases

Database .NET .NET Core
SQLite + +
MySQL/MariaDB + +
PostgreSQL + +
SQL Server + +

Full Documentation

https://nick-lucas.github.io/LimeBean/


*Note that all licence references and agreements mentioned in the Limebean README section above are relevant to that project's source code only.