使用 C# 开发的轻量级开源数据库 LiteDB

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 C# 开发的轻量级开源数据库 LiteDB相关的知识,希望对你有一定的参考价值。

你好,这里是 Dotnet 工具箱,定期分享 Dotnet 有趣,实用的工具或组件,希望对您有用!

  简介  

LiteDB 是一个小型、快速、轻量级的 .NET NoSQL 嵌入式数据库,也就是我们常说的 K/V 数据库,完全用 C# 托管代码开发,并且是免费和开源的,Github Star 数近 7k。它非常适合在移动应用 (Xamarin ios/android)和小型的桌面/Web 应用中使用。

LiteDB 的灵感来自 MongoDB 数据库,所以它的 API 和 MongoDB 的 .NET API 非常相似。

功能特性

  • •  无服务器 NoSQL 文档存储

  • •  类似于 MongoDB 的简洁 API

  • •  支持 .NET 4.5 / NETStandard 2.0

  • •  线程安全

  • •  LINQ 查询的支持

  • •  具有完整事务支持的 ACID

  • •  单文件存储,类似于 SQLite

  • •  存储文件和流数据

  • •  LiteDB Studio - 数据查询工具

  • •  开源免费

  

如何使用

  1. 1. 在项目中使用 Nuget 安装 LiteDB。

  2. 2. 创建实体类

public class Customer

    public int Id  get; set; 
    public string Name  get; set; 
    public string[] Phones  get; set; 
    public bool IsActive  get; set; 
  1. 3. 打开数据库,如果不存在会自动创建。

using var db = new LiteDatabase(@"MyData.db");
  1. 4. 下面是一个增删改查的例子。

// 获取 Customers 集合
var col = db.GetCollection<Customer>("customers");  

// 创建一个对象
var customer = new Customer

    Name = "John Doe",
    Phones = new string[]  "8000-0000", "9000-0000" ,
    Age = 39,
    IsActive = true
;

// 在 Name 字段上创建唯一索引
col.EnsureIndex(x => x.Name, true); 

// 数据插入
col.Insert(customer);

// 数据查询 
List<Customer> list = col.Find(x => x.Age > 20).ToList(); 
Customer user = col.FindOne(x => x.Age > 20);

// 数据删除 
col.Delete(user.Id);

另外LiteDB 还支持存储文件。

var storage = db.GetStorage<int>();
   
   // 上传文件
   storage.Upload(123, @"C:\\Temp\\picture-01.jpg");
   
   // 下载文件
   storage.Download(123, @"C:\\Temp\\copy-of-picture-01.jpg");


数据查询 - LiteDB.Studio

LiteDB.Studio 是一个用来查看和编辑 LiteDB 数据的 GUI 工具,并且支持 SQL 命令。

项目地址

https://www.litedb.org

以上是关于使用 C# 开发的轻量级开源数据库 LiteDB的主要内容,如果未能解决你的问题,请参考以下文章

LiteDB源码解析系列LiteDB介绍

Xamarin.Forms中使用LiteDB分页

2022年10月 LiteDB数据库-.Net Core中的使用

UWP使用 LiteDB 存储数据

SQLite在C#中的安装与操作

使用 C# 开发的现代轻量级 Windows 文本编辑器