我有一个项目,它最初使用的是System.Data.SqlServerCe.4.0(MSSQL Compact Edition 4.0)数据提供程序。然后我做了一个分支,更改了配置文件和System.Data.SqlClient(MSSQL提供程序)的引用,卸载了MSSQLCE nuget包的EntityFramework。分支项目中的所有内容都可以正常工作,除了两件事:Add-Migration和Database seed脚本失败并显示下一个错误:
Schema specified is not valid. Errors: (0,0) : error 0175: The ADO.NET provider with invariant name 'System.Data.SqlServerCe.4.0' is either not registered in the machine or application config file, or could not be loaded
我试图找到问题的根源,最后发现EDMX架构存储在MSSQL项目数据库的__MigrationHistory中,包含下一行:
<Schema Namespace="CodeFirstDatabaseSchema" Provider="System.Data.SqlServerCe.4.0" ProviderManifestToken="4.0" Alias="Self" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
但我不明白,为什么使用Provider =“System.Data.SqlServerCe.4.0”选项生成它?我已经检查过我的分支项目没有任何文件,其中包含SqlServerCe子字符串(在OS中进行文件搜索)。我试图重新安装EntityFramework NuGet包,也没有帮助。
App.Config中:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<connectionStrings>
<add name="AppDBContext" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=AnalyticDB;Persist Security Info=True;Trusted_Connection=Yes;MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
EF版本:6.1.2
谢谢!