当前位置:   article > 正文

使用 EFCore 去连接 mysql 数据库的时候提示下面的报错信息_an exception has been raised that is likely due to

an exception has been raised that is likely due to a transient failure. cons

使用 EFCore 去连接 mysql 数据库的时候,提示下面的报错信息:

“An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding ‘EnableRetryOnFailure()’ to the ‘UseMySql’ call.”的解决方案。

解决方案:
这一般是连接方面的问题,确认一下连接字符串是否正确,注意port,sslMode等的设置(不区分大小写)

这种情况可以尝试在连接字符串中添加

“;SslMode=None;Pooling=true”

手动关闭SSL连接:SslMode=None

数据库连接配置里的连接池设置为true :Pooling=true

Server=127.0.0.1;Port=3306;Database=数据库;User ID=账户;Password=密码;Persistsecurityinfo=True;Character Set=utf8;Allow User Variables=True;SslMode=None;
  • 1

————————————————
版权声明:本文为CSDN博主「枯叶轮回」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42045719/article/details/125888237

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/891835
推荐阅读
相关标签
  

闽ICP备14008679号