Is there any extension, tool, package, or whatever that can make LiteDB work in .NET 6? Or do I absolutely have to use a different DB?
I had a project in .NET 4.6.1 that uses LiteDB and I'm asked to create a "Version 2" of that project by using .NET 6, amongst other technologies. My project is giving an error at the LiteDB part, and I just noticed that LiteDB might not work with .NET 6. I was thinking maybe there's some hack or extension or whatever that allows this to work
Edit : LiteDB actually works with .NET 6. My error was
System.MissingMethodException: 'Method not found: 'Void System.Threading.Mutex..ctor(Boolean, System.String, Boolean ByRef, System.Security.AccessControl.MutexSecurity
when I was trying to access the db. Turns out, I merely forgot to install LiteDB Nuget Package on the .NET 6 app that was calling my LiteDB library