SQLiteConnection Constructor Fails in .NET Single-File Bundles Due to Path Resolution
Issue Overview: SQLiteConnection Constructor Throws ArgumentNullException in Single-File Deployments The System.Data.SQLite.SQLiteConnection constructor throws a System.ArgumentNullException during initialization when deployed as a .NET 6/7 single-file executable. This occurs because the library attempts to resolve configuration or dependency paths using Assembly.Location, which returns an empty string in single-file bundles. The error manifests in the ConfigureViaOneFile method during…