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实现
- Host: GitHub
- URL: https://github.com/colinin/dotnetcore.cap.sqlite
- Owner: colinin
- Created: 2019-11-13T08:43:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T03:00:33.000Z (7 months ago)
- Last Synced: 2025-04-12T22:05:19.413Z (about 2 months ago)
- Language: C#
- Size: 86.9 KB
- Stars: 14
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
https://github.com/dotnetcore/CAP
CAP DataStorage with Sqlite
````C#
// Useservices.AddCap(x =>
{
x.UseSqlite(cfg =>
{
cfg.ConnectionString = "Data Source=./cap-event.db";
});
//x.UseSqlite("Data Source=./cap-event.db");
// other...
});````