Open
Description
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?