# LiteDB **Repository Path**: owen0/LiteDB ## Basic Information - **Project Name**: LiteDB - **Description**: LiteDB - A .NET NoSQL Document Store in a single data file - www.litedb.org - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 16 - **Created**: 2017-07-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LiteDB - A .NET NoSQL Document Store in a single data file [![Join the chat at https://gitter.im/mbdavid/LiteDB](https://badges.gitter.im/mbdavid/LiteDB.svg)](https://gitter.im/mbdavid/LiteDB?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build status](https://ci.appveyor.com/api/projects/status/sfe8he0vik18m033?svg=true)](https://ci.appveyor.com/project/mbdavid/litedb) LiteDB is a small, fast and lightweight NoSQL embedded database. - Serverless NoSQL Document Store - Simple API similar to MongoDB - 100% C# code for .NET 3.5 / NETStandard 1.4 in a single DLL (less than 200kb) - Support for Portable UWP/PCL (thanks to @negue and @szurgot) - Thread safe and process safe - ACID transactions - Data recovery after write failure (journal mode) - Datafile encryption using DES (AES) cryptography - Map your POCO classes to `BsonDocument` using attributes or fluent mapper API - Store files and stream data (like GridFS in MongoDB) - Single data file storage (like SQLite) - Index document fields for fast search (up to 16 indexes per collection) - LINQ support for queries - Shell command line - [try this online version](http://www.litedb.org/#shell) - Pretty fast - [compare results with SQLite here](https://github.com/mbdavid/LiteDB-Perf) - Open source and free for everyone - including commercial use - Install from NuGet: `Install-Package LiteDB` ## New in 3.1 - New `LiteRepository` class to simple repository pattern data access [see here](https://github.com/mbdavid/LiteDB/wiki/LiteRepository) - Collection names could be `null` and will be resolved by `BsonMapper.ResolveCollectionName` user function (default: `typeof(T).Name`) ## Try online [Try LiteDB Web Shell](http://www.litedb.org/#shell). For security reasons, in the online version not all commands are available. Try the offline version for full feature tests. ## Documentation Visit [the Wiki](https://github.com/mbdavid/LiteDB/wiki) for full documentation ## Download Download the source code or binary only in [LiteDB Releases](https://github.com/mbdavid/LiteDB/releases) ## How to use LiteDB A quick example for storing and searching documents: ```C# // Create your POCO class public class Customer { public int Id { get; set; } public string Name { get; set; } public int Age { get; set; } public string[] Phones { get; set; } public bool IsActive { get; set; } } // Open database (or create if doesn't exist) using(var db = new LiteDatabase(@"MyData.db")) { // Get customer collection var col = db.GetCollection("customers"); // Create your new customer instance var customer = new Customer { Name = "John Doe", Phones = new string[] { "8000-0000", "9000-0000" }, Age = 39, IsActive = true }; // Create unique index in Name field col.EnsureIndex(x => x.Name, true); // Insert new customer document (Id will be auto-incremented) col.Insert(customer); // Update a document inside a collection customer.Name = "Joana Doe"; col.Update(customer); // Use LINQ to query documents (will create index in Age field) var results = col.Find(x => x.Age > 20); } ``` Using fluent mapper and cross document reference for more complex data models ```C# // DbRef to cross references public class Order { public ObjectId Id { get; set; } public DateTime OrderDate { get; set; } public Address ShippingAddress { get; set; } public Customer Customer { get; set; } public List Products { get; set; } public decimal Total => Products.Sum(p => p.Price); } // Re-use mapper from global instance var mapper = BsonMapper.Global; // "Produts" and "Customer" are from other collections (not embedded document) mapper.Entity() .DbRef(x => x.Customer, "customers") // 1 to 1/0 reference .DbRef(x => x.Products, "products") // 1 to Many reference .Field(x => x.ShippingAddress, "addr") // Embedded sub document .Index(x => x.OrderDate) // Index this field .Ignore(x => x.Total); // Do not store this using(var db = new LiteDatabase("MyOrderDatafile.db")) { var orders = db.GetCollection("orders"); // When query Order, includes references var query = orders .Include(x => x.Customer) .Include(x => x.Products) // 1 to many reference .Find(x => x.OrderDate <= DateTime.Now); // Each instance of Order will load Customer/Products references foreach(var order in query) { var name = order.Customer.Name; ... } } ``` ## Where to use? - Desktop/local small applications - Application file format - Small web applications - One database **per account/user** data store - Few concurrent write operations ## Plugins - A GUI tool: https://github.com/falahati/LiteDBViewer - Lucene.NET directory: https://github.com/sheryever/LiteDBDirectory ## Changelog Change details for each release are documented in the [release notes](https://github.com/mbdavid/LiteDB/releases). ## License [MIT](http://opensource.org/licenses/MIT) Copyright (c) 2017 - MaurĂ­cio David ## Thanks A special thanks to @negue and @szurgot helping with portable version.