Seeing this error: ``` System.NullReferenceException: Object reference not set to an instance of an object. at MySql.Data.MySqlClient.MySqlConnection.get_Database() ``` Looks as if the fix is a null conditional operator (`?.`) needed at [MySqlConnection.cs#L160](https://github.com/mysql-net/MySqlConnector/blob/master/src/MySqlConnector/MySqlClient/MySqlConnection.cs#L160)
Seeing this error:
Looks as if the fix is a null conditional operator (
?.) needed at MySqlConnection.cs#L160