vs2017 ошибка мастера модели ado.net ErikEJ SqlCeToolbox - PullRequest
0 голосов
/ 21 декабря 2018

vs2017 v15.5.6 мастер модели ado.net не работает

my app.config

    <configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <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.6" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
      <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
      <provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
    </providers>
  </entityFramework>
  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite.EF6" />
      <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
    </DbProviderFactories>
  </system.data>
</configuration>

ошибка:

Произошла ошибка при подключении кбаза данных.База данных может быть недоступна.произошло исключение типа 'system.invalidcastexception'.сообщение об ошибке: system.data.sqlite.sqliteconnection не может быть приведено к system.data.sqlite.sqliteconnection.Тип A происходит от 'system.data.sqlite, версия = 1.0.108.0, культура = нейтральная

1 Ответ

0 голосов
/ 21 декабря 2018

Итак, я удаляю

System.Data.SQLite 1.0.109
System.Data.SQLite.Core 1.0.109
System.Data.SQLite.Linq 1.0.109
System.Data.SQLite.EF6 1.0.109

and install
System.Data.SQLite.EF6 1.0.108
System.Data.SQLite.Linq 1.0.108
System.Data.SQLite.Core 1.0.108
System.Data.SQLite 1.0.108

проблема решена Спасибо за все

...