Novolis Docs
novolis-storage / getting-started.md

Getting started

dotnetstoragesqlitenovolis

Novolis storage provides a shared IRepository<T> abstraction with JSON file and SQLite implementations.

Prerequisites

Build

dotnet build Novolis.Storage.slnx

JSON storage

services.AddJsonDataStorage<MyEntity>(configuration);

SQLite storage

services.AddSqliteDataStorage<MyEntity>(configuration, databaseName: "app.db");

See also