Sqlite ile geliştirdiğiniz projeyi host'a attığınızda Unable to find the requested .Net Framework Data Provider. It may not be installed. hatası alıyorsanız aşağıdaki satırları web.cin.onfig dosyanıza uygun şekilde ekley
<configuration> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite"/> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /> </DbProviderFactories> </system.data> </configuration>