You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Hi, recently I was trying to use this framework in some of my applications and came up with a question about lite db database provider and context classes.
I know that LiteDB supports the usage of streams to run as a in-mem database. But while attempting to setup this using this framework I noticed the options class for lite db repository only has a single parameter DatabaseName available to specify the path for .db file to use.
Also checked that DatabaseProvider uses this to open or creating an empty database on disk, i thought that overriding the logic on DatabaseProvider would solve this but the class is sealed. So how I'm supposed to do enable usage of memory streams w/ LiteDb?