I am using SQLite with Entity Framework Core in my .NET project. But I want to add some extensions for SQLite. How to correctly load SQLite extension? Nuget package does not exists, only .dll SQLite extension.
I found this article Loading SQLite Extensions, but there using Microsoft.Data.Sqlite.SqliteConnection, and I don't understand, how I may config DbContext service in Startup class or something else.
I create
IDbConnectionInterceptorand in
Startup.csConfigureServices()add DB serviceThanks for Svyatoslav Danyliv.