使用 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.”的解决方案。将数据库连接配置里的连接池设置为tr
使用 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;
————————————————
版权声明:本文为CSDN博主「枯叶轮回」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42045719/article/details/125888237
更多推荐
所有评论(0)