.net6 连接mysql报错Unable to connect to any of the specified MySQL hosts. 电脑版发表于:2022/9/7 9:47 .net5/6 连接mysql报错Unable to connect to any of the specified MySQL hosts. 不能使用点.连接 ``` server=.;uid=root;pwd=123456;database=oa;port=3306 ``` 使用localhost就好了 ``` server=localhost;uid=root;pwd=123456;database=oa;port=3306 ```