An open API service indexing awesome lists of open source software.

https://github.com/colinin/dotnetcore.cap.sqlite

CAP Sqlite实现
https://github.com/colinin/dotnetcore.cap.sqlite

Last synced: about 2 months ago
JSON representation

CAP Sqlite实现

Awesome Lists containing this project

README

        

https://github.com/dotnetcore/CAP

CAP DataStorage with Sqlite

````C#
// Use

services.AddCap(x =>
{
x.UseSqlite(cfg =>
{
cfg.ConnectionString = "Data Source=./cap-event.db";
});

//x.UseSqlite("Data Source=./cap-event.db");

// other...
});

````