Yessql alternatives and similar packages
Based on the "Database" category.
Alternatively, view Yessql alternatives based on common mentions on social networks and blogs.
-
Event Store
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency. -
SqlKata Query Builder
SQL query builder, written in c#, helps you build complex queries easily, supports SqlServer, MySql, PostgreSql, Oracle, Sqlite and Firebird -
DBreeze
C# .NET NOSQL ( key value, object store embedded TextSearch SemanticSearch Vector layer ) ACID multi-paradigm database management system. -
ZoneTree
ZoneTree is a persistent, high-performance, transactional, and ACID-compliant ordered key-value database for .NET. It operates seamlessly both in-memory and on local/cloud storage, making it an ideal choice for a wide range of applications requiring efficient data management. -
NReco LambdaParser
Runtime parser for string expressions (formulas, method calls). Builds dynamic LINQ expression tree and compiles it to lambda delegate. -
StringDB
StringDB is a modular, key/value pair archival DB designed to consume *tiny* amounts of ram & produce *tiny* databases. -
Db4o-gpl
new Db4o GPL Source Code for Java7+ & .netstardard2.0 Android Xamarin..., the best database project to help you to learn how to make databases -
Mailcloud.Hydra
DISCONTINUED. A set of components to take the most advantage of performance and capacity of Azure Storage.
Sevalla - Deploy and host your apps and databases, now with $50 credit!

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Yessql or a related project?
README
YesSql
A .NET document database interface for relational databases, because in SQL we (still) trust !
How does it work ?
YesSql is a .NET Core document database interface over relational databases which allows you to define documents and indexes using plain old CLR objects. The main difference with document databases is that it uses any RDBMS to store them, which gives you all the power of SQL databases like transactions, replication, reporting, ... But the main advantage might be that there is no magic involved, it's pure SQL !
A video about YesSql was recorded and is available here https://www.youtube.com/watch?v=D42eK6CJjF4
FAQ
Aren't NoSQL databases also about map/reduce ?
YesSql has support for it too. There is a sample project in the source code, and you'll see that map/reduce is fully supported by looking at the tests.
How is the database structured ?
There is a global [Document] table. Each index is a custom class which has its own table. A reduce index also adds a bridge table in order to map many documents. Internally YesSql communicates with the database server using Dapper.
Dude ! Why another document database ?
I know :/ Well actually I am a big fan of document databases and I am well aware that some like MongoDb and RavenDb are already top-notch ones, but what if you want a free, transactional .NET document database ?
- MongoDb is not transactional, and some applications can't cope with it. RDBMS on the contrary are all transactional.
- RavenDb (which I am a big fan of) is not free (for most usages).
- Some companies which have invested a lot in SQL, only trust SQL, and have in-house experts.
So YesSql might be an answer for the developers who face those restrictions. If you don't care about those then please don't spend one more minute on YesSql, it's useless for you.
I am sold, where do I start ?
The documentation is here: https://github.com/sebastienros/yessql/wiki
You can also take a look at the sample apps in the source code.