我正在使用 Visual Studio 2010 Ultimate、C# WPF、MVVM、Sqlite。
我有这个项目运行没有问题(在 Windows 8 x64,.NET Framework 4 客户端配置文件上),但是在运行已安装的应用程序(在 Windows 7 x32,.NET Framework 4 客户端配置文件上)时,我得到了所有这些异常:
Exception: System.Windows.Markup.XamlParseException: 'The invocation of the constructor of type' GestorDocument.UI.DeterminanteView 'that matches the specified binding constraints threw an exception.' (Line number: '3 ', line position '9'). ---> System.ArgumentException: The specified store provider can not be found in the configuration or is not valid. ---> System.ArgumentException: Could not find the data provider. NET Framework requested. It may not be installed.
这是我的连接字符串:
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="GestorDocumentEntities" connectionString="metadata=res://*/GestorDocument.csdl|res://*/GestorDocument.ssdl|res://*/GestorDocument.msl;provider=System.Data.SQLite;provider connection string="data source=C:\SQLITE\BD\GestorDocument.s3db"" providerName="System.Data.EntityClient"/>
</connectionStrings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
请问,有什么想法吗?
现在它起作用了!我的解决方案是:
项目中的 App.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, Version=1.0.85.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
</DbProviderFactories>
</system.data>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
</startup>
</configuration>
包括以下参考:(将安装应用程序的机器的版本。)
- SQLite.Designer.dll
- System.Data.SQLite.dll
- System.Data.SQLite.Linq.dll
将“复制本地”属性设置为 True。
在 machine.config 中添加 system.data 和 DbProviderFactories 之间的这一行
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.85.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
确保版本。NET Framework(开发应用程序)安装在测试机器上。