I'm trying to create ado.net model in visual studio 2019.
When I get to the point where I should create a connection with MySQL server I get an error shown on the screenshot.
I'm using MySQL for visual studio 2.0.5 and Connector/NET
Nuget packages: MySql.Data; Entity Framework 6
What can I do?
Asked
Active
Viewed 239 times
0
-
like [this answer](https://stackoverflow.com/questions/52864853/how-to-get-mysql-8-to-run-with-laravel/52865317#52865317) changing the plugin of the user might be the easiest way to get past this. – danblack Sep 13 '20 at 12:20
-
1Does this answer your question? [Authentication method 'caching\_sha2\_password' not supported by any of the available plugins](https://stackoverflow.com/questions/50088142/authentication-method-caching-sha2-password-not-supported-by-any-of-the-availa) – danblack Sep 13 '20 at 12:22
-
@danblack It does not. Tried both of them. – luminate Sep 13 '20 at 12:26
-
Did you use mysql_native_password for your connection to try? If you are , could you add **auth_plugin='mysql_native_password'** in the conect to try, like this [answer](https://stackoverflow.com/a/50557297/9862794) shown. – DasiyTian_1203 Sep 14 '20 at 07:49