Visual Studio Code – .NET MAUI Blazor error when creating SQLite Database
I get this error when I am makeing a SQKuteAsyncConnection: **System.TypeInitializationException:** 'The type initializer for 'SQLite.SQLiteConnection' threw an exception.' My class looks like this: internal class DbContext : IDbContext { private SQLiteAsyncConnection database; public DbContext() { SetupDatabase(); } public async…