出自:http://bbs.csdn.net/topics/390917337

兄弟,刚刚在stackoverflow上找到了解决方法了
http://stackoverflow.com/questions/21823719/visual-studio-2013-say-me-entity-framework-that-the-provider-of-sqlite-is-not-fo

我自己的问题已经解决了,就是把要用SQLite的这个项目在添加了引用后,先编译生成一下,再添加EDMX。你试试!

2018-03-28-------------------------------------------------------------------------------------------------

用Nuget包安装新版本的sqlite.dll后,连接器需要保持相同版本

如我当前的sqlite.dll的版本是1.0.108.0

那么你连接器的版本也应该是sqlite-netFx46-setup-bundle-x86-2015-1.0.108.0.exe

2018-3-29

发现跟你用nuget引用的dll也有关

需要用.core

2018-04-24

再记一次成功刷出数据源的经历

打开项目,nuget获取sqlite.ef6,dll的版本是1.0.108.0

关闭vs,安装sqlite-netFx46-setup-bundle-x86-2015-1.0.108.0.exe

打开项目,编译,刷不出来数据源

nuget sqlite.core

编译,成功刷出数据源

2018-04-24

https://blog.csdn.net/kaluluosi111/article/details/50323713

报错关于:Unable to determine the provider name for provider factory of type 'System.Data.SQLite.SQLiteFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.

在配置文件增加下面两项

<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<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"/>
<add name='SQLiteData Provider' invariant='System.Data.SQLite' description='.Net Framework DataProvider for SQLite' type='System.Data.SQLite.SQLiteFactory,System.Data.SQLite'/>
</DbProviderFactories>
</system.data>

最新文章

  1. Asp.net MVC5 路由Html后缀的问题
  2. Oracle 11gR2 安装教学
  3. 【android】android下防止anr程序无响应
  4. Allegro PCB -内层分割,比如电源层需要分割几种电源
  5. zookeeper伪分布式集群环境搭建
  6. Angular结构型指令,模块和样式
  7. idea在本地调试,spark创建hiveContext的时候报错
  8. Linux 的系统目录介绍
  9. 使用vmware提示无法打开内核设备 \\.\Global\vmx86: 系统找不到指定的文件
  10. Cookie快速入门实践
  11. nova scheduler 介绍
  12. Django商城项目笔记No.2项目准备工作
  13. mybatis 传递参数的两种方式与模糊匹配 很重要
  14. ios 获得通讯录中联系人的所有属性 亲测,可行 兼容io6 和 ios 7
  15. Mysql闭包表之关于国家区域的一个实践
  16. java语言复制数组的四种方法
  17. 【Android】12.4 利用Intent读取图库中的图片
  18. Lucene原理之概念
  19. django数据库迁移-15
  20. 【动态规划/多重背包问题】POJ1014-Dividing

热门文章

  1. sqlalchemy之create_engine和session
  2. [转]C# 将类的内容写成JSON格式的字符串
  3. python调用tushare获取沪股通、深股通成份股数据
  4. 使Excel中单元格内英文为Arial Narrow 中文为宋体显示打印
  5. Spring Security 自定义登录页面
  6. Activiti学习笔记6 — 变量与历史记录
  7. vue-router配置子路由
  8. layui中的tab切换
  9. layer.confirm等事件X关闭与取消监听
  10. gradle 随记