LiteDB
LiteDB copied to clipboard
LiteDB - A .NET NoSQL Document Store in a single data file
[DbConnectionStringBuilder]: https://docs.microsoft.com/en-us/dotnet/api/system.data.common.dbconnectionstringbuilder?view=net-6.0 [ParseKeyValue]: https://github.com/mbdavid/LiteDB/blob/6d9ac6237ff8cae104a3c57a8de4ec55b4506e87/LiteDB/Utils/Extensions/DictionaryExtensions.cs#L34 Consider using [DbConnectionStringBuilder] instead of manually parsing connection strings by [ParseKeyValue]. This would not just simplify the code. `DbConnectionStringBuilder` parser is more powerful, supporting new lines...
Tested version: LiteDB 5.0.12 **Steps to reproduce** 1. Open a database in read only mode. 1. Invoke some `Insert`. It fails as expected. 1. Dispose the database instance. This throws...
**Is your feature request related to a problem? Please describe.** Code gets bulky and inability to use method groups as a substitute for expressions causes duplicated expressions ie. code fragments....
Hi, I'm playing around on LiteDB.Studio to modify a database that I accidentally inserted data into. I have this syntax ```sql SELECT $ FROM last_telemetry_map INCLUDE $.Device; ``` One of...
**Version** LiteDB 5.0.11.0 .NET **Describe the bug** I've a .NET application which use LiteDB with a shared connection. Sometimes it happens that the .LOG files is created and than any...
It's probably me who is missing something, but i am unable to figure out how to setup and query on a datetime Propertys date part. What i need to do...
Getting an exception while trying to do thebase.Insert(rec) - "this page should be in slot #0". Interestingly, the exception isn't thrown in debug, and Insert actually works correctly. I've checked...
The documentation and LiteCollection returns BsonValue for Insert while LiteRepository returned void.
With .NET 6's `record class`, is there any way to specify the constructor?
I'm using LiteDB on Xamarin and need to preinstall a db. I also wish to add encryption. However, Xamarin on Android won't allow direct access to a asset file, only...