vote up 0 vote down star
1

Hi,

I have a ASP.NET MVC app that is using SQLite database through Entity Framework. Everything works on VS 2008's local development webserver.

However, deploying the web app to my service provider causes this error:

[ArgumentException: Unable to find the requested .Net Framework Data Provider.  It may not be installed.]
   System.Data.Common.DbProviderFactories.GetFactory(String providerInvariantName) +1308959
   System.Data.EntityClient.EntityConnection.GetFactory(String providerString) +35

Service provider has commented that they do not support SQLite. I had though that SQLite is independent of service provider's settings since it's App_Data deployable.

Has anyone experiences of a succesfull Entity Framework + SQLite deployment?

Cheers, -pom-

flag

71% accept rate

2 Answers

vote up 0 vote down

Have you tried adding the required DLL(s) to your application's bin directory? You might want to look at Phil Haack's article on Bin Deploying ASP.NET MVC for ideas on how to do this automatically.

link|flag
Hi, thanks for an answer. Yep, I've seen Phil's blogpost. I can deploy normal ASP.NET MVC app just fine. It's the combination with Entity Framework + SQLite that is problematic. I've upped both System.Data.Entity.dll and System.Data.SQLite.dll to bin folder. No luck yet. – Pompair Feb 16 at 15:34
1  
Hmmm. Are they in your assemblies section in the web config? – tvanfosson Feb 16 at 16:35
vote up 3 vote down

You're unlikely to be reading this anymore, but you're missing the following in your app.config (or, for you, web.config):

<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>

Specifically, if you're using sqlite in a library which is linked into your website, it's [i]not[/i] sufficient to put that into the app.config of the [i]library[/i] it's got to go into the website. This is because of how you're loading the provider: essentially, you're determining at runtime which dll to load, using the string "System.Data.SQLite", and locating the appropriate provider is done using the settings of the entry assembly.

link|flag
1  
Thanks for the answer... – Funky81 Jul 31 at 23:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.