尝试将 Mysql 与 .net 一起使用
我安装了 MySQL 连接器但出现此错误
“System.ArgumentException:无法找到请求的.Net Framework 数据提供者。它可能未安装。”
/// 使用连接初始化一个新的 gerenteEntities 对象 在应用程序的“gerenteEntities”部分中找到的字符串 配置文件。第 41 行: /// 第 42 行:
公共 gerenteEntities() : base("name=gerenteEntities", "gerenteEntities") 第 43 行:{ 第 44 行:
this.ContextOptions.LazyLoadingEnabled = true;
似乎没有显示。我已经添加了参考资料,但仍然不起作用。
我能做些什么?
I install the MySQL connector but this error
"System.ArgumentException: Unable to find the requested .Net Framework
Data Provider. It may not be installed."/// Initializes a new gerenteEntities object using the connection
string found in the 'gerenteEntities' section of the application
configuration file. Line 41: /// Line 42:
public gerenteEntities() : base("name=gerenteEntities",
"gerenteEntities") Line 43: { Line 44:
this.ContextOptions.LazyLoadingEnabled = true;
does not appear to show. I already added the references but it still does not work.
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与您前进的方向不同,但最近我在初始化与 MySQL 的连接时也遇到了问题。我最终找到的解决方案是使用 Tamir Gal 编写的 SharpSSH 代码(尽管根据我的上下文进行了轻微修改),您可以免费获得它。如果您的问题仍然存在,这可能值得考虑。
This is different to the direction you are heading in but recently I too had problems initalising a connection to MySQL. The solution I eventually found was to use the SharpSSH code written by Tamir Gal (albeit with slight modifications for my context) that you can get free. That might be worth looking in to if your problems continue.