I have this class...public class User
{
public int UserId { get; set; }
public string UserName { get; set; }
public bool IsValidated { get; set; }
}
...And I'm populating it with this sql using dapper:...var users = connection.Query<User>("SEL...
I use msyql.data 8.08 and dapper and .net core to connection mysql5.7.18
but following exception is appeared:...MySql.Data.MySqlClient.MySqlException:“The host localhost does not support SSL connections.â€...How to deal with it?