Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

nuget.org : dbcrud.litedb

这是一个LiteDB的二次封装,可以很方便的增删改查,无需提前建库,建表,安装就能快速上手使用。 用惯了SQL的开发人员,一下使用NOSQL,可能不太适应,所以本库支持SQL语句增删改查,到达SQL语句对LiteDB进行数据操作。 详细使用请见包自述文件 或https://www.cnblogs.com/zzwen/p/17351036.html This is a secondary package of LiteDB, can be very convenient to add, delete, modify and check, no need to build libraries in advance, build tables, installation can quickly start to use. Developers who are used to SQL may not be comfortable with NOSQL, so this library supports SQL statements to add, delete, modify and check, arrive at SQL statements for data operations on LiteDB See the package readme for detailed usage Key-Value操作,常用于配置信息 string key = "test"; var v = DateTime.Now; //保存 var result = testdb.SaveKeyValue(key, v); //判断是否存在 bool isExists= testdb.KeyValueExists(key) //获取 var getv = testdb.GetKeyValue<DateTime>(key); //删除 bool ok= testdb.DelKeyValue(key)

Registry - Homepage - JSON
purl: pkg:nuget/dbcrud.litedb
Keywords: DB, CRUD, NOSQL, LiteDB
License:
Latest release: about 1 month ago
First release: about 1 year ago
Downloads: 21,201 total
Last synced: 13 days ago

    Loading...
    Readme
    Loading...