Running my application on another machine gives me an error

Possible duplicate:
C # Failed to find or load a registered .Net Data Provider error

My application is a C # Winforms Entity Framework / SQLite desktop application. (Buzzwords!)

When I run the application on my machine, it works correctly, no problem. But when I create the installation package and run it on another machine, I get this error:

System.ArgumentException: The specified store provider cannot be found in the configuration, or is not valid. ---> System.ArgumentException: Could not find the requested .Net Framework data provider. It may not be installed.

How can I “pack” a data provider for SQLite? The only thing I installed dev on my machine was this: http://sqlite.phxsoftware.com/

Any suggestions?

0
c # sqlite winforms entity-framework
source share
1 answer

Specify sqlite link to copy local and then include it in your package

0
source share

All Articles