What will be the connection string in appsettings.json file for MySQL localhost without password for root? I tried below but not working!
Server=localhost;Port=3306;Database=myDbName;Uid=root;SslMode=none
On the opposite direction, I also set password for root user using user accounts in phpMyAdmin as describe here https://stackoverflow.com/a/34562915/11276273 But no luck.
Please suggest the solution.
Thanks in advance :)