This was previously discussed in aspnet/Microsoft.Data.Sqlite#61.
There are quite a few things in SQLite that need to be configured every time a connection is opened. (E.g. certain PRAGMAs, user-defined functions, collations, etc.)
The idea would be that you pass some configuration into your SqliteConnection instances, and every time the connection is opened, it would be configured appropriately.
This was previously discussed in aspnet/Microsoft.Data.Sqlite#61.
There are quite a few things in SQLite that need to be configured every time a connection is opened. (E.g. certain PRAGMAs, user-defined functions, collations, etc.)
The idea would be that you pass some configuration into your
SqliteConnectioninstances, and every time the connection is opened, it would be configured appropriately.