novolis-storage / getting-started.md
Getting started
Workspaces and persistence
dotnetstoragesqlitenovolis
Novolis storage provides a shared IRepository<T> abstraction with JSON file and SQLite implementations.
Prerequisites
Build
dotnet build Novolis.Storage.slnxJSON storage
services.AddJsonDataStorage<MyEntity>(configuration);SQLite storage
services.AddSqliteDataStorage<MyEntity>(configuration, databaseName: "app.db");